deno.land / x / pothos@release-1713397530 / packages / core / fieldUtils / interface.ts
123456789// @ts-nocheckimport { SchemaTypes } from '../types/index.ts';import FieldBuilder from './builder.ts';export default class InterfaceFieldBuilder<Types extends SchemaTypes, ParentShape> extends FieldBuilder<Types, ParentShape, "Interface"> { constructor(name: string, builder: PothosSchemaTypes.SchemaBuilder<Types>) { super(name, builder, "Interface", "Interface"); }}
Version Info