import type { ModuleInstance } from '@xyo-network/module-model'; import type { Payload } from '@xyo-network/sdk-protocol-js'; import type { CustomWitnessModule } from './CustomModule.ts'; import type { WitnessModuleEventData } from './EventData.ts'; import type { WitnessInstance } from './Instance.ts'; import type { WitnessParams } from './Params.ts'; import type { WitnessQueryFunctions } from './QueryFunctions.ts'; export type CustomWitnessInstance, TIn, TOut> = WitnessModuleEventData, TIn, TOut>> = CustomWitnessModule & WitnessQueryFunctions & ModuleInstance; //# sourceMappingURL=CustomInstance.d.ts.map