@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
12 lines (11 loc) • 515 B
TypeScript
import { type InputTypeParam, inputShapeKey, type SchemaTypes } from '../types/index.js';
import { BaseTypeRef } from './base.js';
export declare class InputListRef<Types extends SchemaTypes, T> extends BaseTypeRef<Types> implements PothosSchemaTypes.InputListRef<Types, T> {
kind: "InputList";
[inputShapeKey]: T;
$inferInput: T;
listType: InputTypeParam<Types>;
required: boolean;
constructor(listType: InputTypeParam<Types>, required: boolean);
}
//# sourceMappingURL=input-list.d.ts.map