import { ScalarType } from './Types/ScalarType';

const scalarTypes: Record<ScalarType, string> = {
  boolean: 'Boolean',
  integer: 'Int',
  number: 'Float',
  string: 'String'
};

export { scalarTypes };
