import { GraphQLScalarType } from 'graphql'; import ScalarRef from './scalar'; export default class BuiltinScalarRef extends ScalarRef { type; constructor(type: GraphQLScalarType) { super(type.name); this.type = type; } }