forEachField.d.ts 202 B

1234
  1. import { GraphQLSchema } from 'graphql';
  2. import { IFieldIteratorFn } from '../Interfaces';
  3. declare function forEachField(schema: GraphQLSchema, fn: IFieldIteratorFn): void;
  4. export default forEachField;