import { GraphQLScalarType } from 'graphql'; import { GraphQLNonNegativeIntConfig } from './NonNegativeInt.js'; const GraphQLUnsignedIntConfig = /*#__PURE__*/ Object.assign({}, GraphQLNonNegativeIntConfig, { name: 'UnsignedInt', }); export const GraphQLUnsignedInt = /*#__PURE__*/ new GraphQLScalarType(GraphQLUnsignedIntConfig);