Documentation
    Preparing search index...

    Type Alias ServiceOpts<U>

    ServiceOpts: {
        [K in keyof U]: U[K] extends ServiceHandler<U[K], Context>
            ? U[K]
            : ServiceHandler<U[K], Context>
    }

    Type Parameters

    • U