@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
9 lines • 389 B
TypeScript
import { inputShapeKey, type SchemaTypes } from '../types';
import { BaseTypeRef } from './base';
export declare class InputTypeRef<Types extends SchemaTypes, T> extends BaseTypeRef<Types> {
kind: "InputObject" | "Enum" | "Scalar";
$inferInput: T;
[inputShapeKey]: T;
constructor(kind: 'Enum' | 'InputObject' | 'Scalar', name: string);
}
//# sourceMappingURL=input.d.ts.map