import { CompatibleTypes, FieldNullability, SchemaTypes, TypeParam } from '../types'; import { FieldKind, FieldRef, InputFieldMap, ShapeFromTypeParam } from '..'; export default class BaseFieldUtil { typename: string; builder: GiraphQLSchemaTypes.SchemaBuilder; kind: Kind; graphqlKind: GiraphQLSchemaTypes.GiraphQLKindToGraphQLType[Kind]; constructor(name: string, builder: GiraphQLSchemaTypes.SchemaBuilder, kind: Kind, graphqlKind: GiraphQLSchemaTypes.GiraphQLKindToGraphQLType[Kind]); protected createField, Nullable extends FieldNullability>(options: GiraphQLSchemaTypes.FieldOptions): FieldRef, Kind>; protected exposeField, Nullable extends FieldNullability, Name extends CompatibleTypes>(name: Name, options: Omit, 'resolve'>): FieldRef, Kind>; } //# sourceMappingURL=base.d.ts.map