Documentation
    Preparing search index...

    Type Alias WorkflowHandler<F, C>

    WorkflowHandler: F extends (ctx: C, param: any) => Promise<any>
        ? F
        : F extends (ctx: C) => Promise<any>
            ? F
            : (ctx: C, param?: any) => Promise<any>

    Type Parameters