(pluginIndexArray: bigint[] | number[], isBeforeOperationArray: boolean[])
| 153 | } |
| 154 | |
| 155 | export function batch_disable_plugins(pluginIndexArray: bigint[] | number[], isBeforeOperationArray: boolean[]) { |
| 156 | let operation = OPCODE_ID_14_BATCH_DISABLE_PLUGINS(pluginIndexArray, isBeforeOperationArray); |
| 157 | operationList.push(operation); |
| 158 | } |
| 159 | |
| 160 | export function batch_add_and_enable_plugins(pluginArray: PluginStruct[] | PluginStructWithNode[]) { |
| 161 | let operation = OPCODE_ID_15_BATCH_ADD_AND_ENABLE_PLUGINS(pluginArray); |
nothing calls this directly
no test coverage detected