UNPKG

pothos-query-generator

Version:
16 lines (15 loc) 511 B
import { SchemaTypes } from "@pothos/core"; import { PothosQueryGeneratorPlugin } from "./index.js"; declare global { export namespace PothosSchemaTypes { interface Plugins<Types extends SchemaTypes> { pothosQueryGenerator: PothosQueryGeneratorPlugin<Types>; } interface SchemaBuilderOptions<Types extends SchemaTypes> { pothosQueryGenerator?: { depth?: number; output?: string | null | false; }; } } }