@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
9 lines (8 loc) • 385 B
TypeScript
import type { GraphQLScalarType } from 'graphql';
import type { SchemaTypes } from '../types/index.js';
import { ScalarRef } from './scalar.js';
export declare class BuiltinScalarRef<Types extends SchemaTypes, T, U> extends ScalarRef<Types, T, U> {
type: GraphQLScalarType<unknown, unknown>;
constructor(type: GraphQLScalarType);
}
//# sourceMappingURL=builtin-scalar.d.ts.map