deno.land / x / pothos@release-1713397530 / packages / core / refs / builtin-scalar.ts
1234567891011// @ts-nocheckimport { GraphQLScalarType } from 'https://cdn.skypack.dev/graphql?dts';import ScalarRef from './scalar.ts';export default class BuiltinScalarRef<T, U> extends ScalarRef<T, U> { type; constructor(type: GraphQLScalarType) { super(type.name); this.type = type; }}
Version Info