@bemedev/types
Version:
Type definitions for Bemedev projects
21 lines (18 loc) • 450 B
JavaScript
;
const PRIMITIVES = [
'string',
'number',
'boolean',
'bigint',
'symbol',
'undefined',
'null',
];
const PRIMITIVE_OBJECTS = ['object', 'date', 'primitive'];
const CUSTOM = '$$app-ts => custom$$';
const PARTIAL = '$$app-ts => partial$$';
exports.CUSTOM = CUSTOM;
exports.PARTIAL = PARTIAL;
exports.PRIMITIVES = PRIMITIVES;
exports.PRIMITIVE_OBJECTS = PRIMITIVE_OBJECTS;
//# sourceMappingURL=constants.cjs.map