import { OutputRef, outputShapeKey, parentShapeKey } from '../types'; import BaseTypeRef from './base'; export default class UnionRef extends BaseTypeRef implements OutputRef, GiraphQLSchemaTypes.UnionRef { kind: "Union"; [outputShapeKey]: T; [parentShapeKey]: P; constructor(name: string); } //# sourceMappingURL=union.d.ts.map