Member Junction
    Preparing search index...

    Type Alias ResolverInterface<T>

    ResolverInterface: {
        [P in keyof T]?: (root: T, ...args: any[]) => T[P] | Promise<T[P]>
    }

    Resolver classes can implement this type to provide a proper resolver method signatures for fields of T.

    Type Parameters

    • T extends object