delegateToSchema.d.ts 222 B

123
  1. import { GraphQLSchema } from 'graphql';
  2. import { IDelegateToSchemaOptions } from '../Interfaces';
  3. export default function delegateToSchema(options: IDelegateToSchemaOptions | GraphQLSchema, ...args: any[]): Promise<any>;