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