import { ConstructorType } from "types/ConstructorType"; /** * Type for passing action requirements * to an external system */ export interface ContextType extends Record { transport: any; params?: Record; result?: ConstructorType<[any]>; error?: ConstructorType<[any]>; value?: any; }