UNPKG

215 BJavaScriptView Raw
1"use strict";
2
3exports.INTEGER = exports.INT = 1 << 0;
4exports.FLOAT = 1 << 1;
5exports.BOOL = exports.BOOLEAN = 1 << 2;
6exports.LIST = exports.ARRAY = 1 << 3;
7exports.REPEATABLE = 1 << 4;
8exports.REQUIRED = 1 << 5;