Documentation
    Preparing search index...

    Type Alias ServiceHandler<F, C>

    ServiceHandler: F extends (ctx: C) => Promise<any>
        ? F
        : F extends (ctx: C, input: any) => Promise<any>
            ? F
            : (ctx: C, input?: any) => Promise<any>

    Type Parameters