import { GraphQLCompositeType, GraphQLField } from 'graphql'; export type ComplexityEstimatorArgs = { type: GraphQLCompositeType; field: GraphQLField; args: { [key: string]: any; }; childComplexity: number; }; export type ComplexityEstimator = (options: ComplexityEstimatorArgs) => number | void; export type Complexity = ComplexityEstimator | number; //# sourceMappingURL=complexity.interface.d.ts.map