deno.land / x / pothos@release-1713397530 / packages / core / refs / output.ts
1234567891011121314// @ts-nocheckimport { outputShapeKey, parentShapeKey } from '../types/index.ts';import BaseTypeRef from './base.ts';export default class OutputTypeRef<T, P = T> extends BaseTypeRef { override kind; $inferType!: T; [outputShapeKey]!: T; [parentShapeKey]!: P; constructor(kind: "Enum" | "Interface" | "Object" | "Scalar" | "Union", name: string) { super(kind, name); this.kind = kind; }}
Version Info