astro-ghostcms/.pnpm-store/v3/files/7c/5736d85b2239d164ff4588fa4c9...

24 lines
480 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { map } from '../common/map.js';
import { nullTag } from '../common/null.js';
import { seq } from '../common/seq.js';
import { string } from '../common/string.js';
import { boolTag } from './bool.js';
import { floatNaN, floatExp, float } from './float.js';
import { intOct, int, intHex } from './int.js';
const schema = [
map,
seq,
string,
nullTag,
boolTag,
intOct,
int,
intHex,
floatNaN,
floatExp,
float
];
export { schema };