import { outputShapeKey, parentShapeKey } from '../types'; import BaseTypeRef from './base'; export default class OutputTypeRef extends BaseTypeRef { kind: "Enum" | "Scalar" | "Interface" | "Object" | "Union"; [outputShapeKey]: T; [parentShapeKey]: P; constructor(kind: 'Enum' | 'Interface' | 'Object' | 'Scalar' | 'Union', name: string); } //# sourceMappingURL=output.d.ts.map