UNPKG

@nestjs/graphql

Version:

Nest - modern, fast, powerful node.js web framework (@graphql)

12 lines 750 B
import { GraphQLInputType } from 'graphql'; import { BuildSchemaOptions, GqlTypeReference } from '../../interfaces'; import { TypeOptions } from '../../interfaces/type-options.interface'; import { TypeMapperService } from '../services/type-mapper.service'; import { TypeDefinitionsStorage } from '../storages/type-definitions.storage'; export declare class InputTypeFactory { private readonly typeDefinitionsStorage; private readonly typeMapperService; constructor(typeDefinitionsStorage: TypeDefinitionsStorage, typeMapperService: TypeMapperService); create(hostType: string, typeRef: GqlTypeReference, buildOptions: BuildSchemaOptions, typeOptions?: TypeOptions): GraphQLInputType; } //# sourceMappingURL=input-type.factory.d.ts.map