import { InputRef, inputShapeKey, OutputRef, outputShapeKey } from '../types'; import BaseTypeRef from './base'; export default class EnumRef extends BaseTypeRef implements OutputRef, InputRef, GiraphQLSchemaTypes.EnumRef { kind: "Enum"; [outputShapeKey]: T; [inputShapeKey]: U; constructor(name: string); } //# sourceMappingURL=enum.d.ts.map