@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
10 lines (9 loc) • 402 B
TypeScript
import { inputShapeKey, type SchemaTypes } from '../types/index.js';
import { BaseTypeRef } from './base.js';
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