/** * Resolvers can implement this type to provide a proper method signatures for some model T. */ export declare type ResolverInterface = { [P in keyof T]?: (entities: T | T[], args?: object, context?: any) => Promise<(T[P][]) | T[P]> | ((T[P][]) | T[P]); };