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