deno.land / x / pothos@release-1713397530 / packages / core / refs / base.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
// @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}>`; }}
pothos

Version Info

Tagged at
a year ago