deno.land / x / pothos@release-1713397530 / packages / core / refs / base.ts
12345678910111213// @ts-nocheckexport default class BaseTypeRef implements PothosSchemaTypes.BaseTypeRef { kind; name; constructor(kind: "Enum" | "InputList" | "InputObject" | "Interface" | "List" | "Object" | "Scalar" | "Union", name: string) { this.kind = kind; this.name = name; } toString() { return `${this.kind}Ref<${this.name}>`; }}
Version Info