@stryke/types
Version:
A package containing many base TypeScript type definitions that are shared across many projects.
16 lines (15 loc) • 721 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TYPE_SET = exports.TYPE_OBJECT = exports.TYPE_MAP = exports.TYPE_ARRAY = exports.TYPE_ARGUMENTS = exports.NEWLINE_STRING = exports.EMPTY_STRING = exports.EMPTY_OBJECT = exports.$NestedValue = void 0;
const EMPTY_STRING = exports.EMPTY_STRING = "",
NEWLINE_STRING = exports.NEWLINE_STRING = `\r
`,
EMPTY_OBJECT = exports.EMPTY_OBJECT = {},
TYPE_ARGUMENTS = exports.TYPE_ARGUMENTS = "Arguments",
TYPE_ARRAY = exports.TYPE_ARRAY = "Array",
TYPE_OBJECT = exports.TYPE_OBJECT = "Object",
TYPE_MAP = exports.TYPE_MAP = "Map",
TYPE_SET = exports.TYPE_SET = "Set",
$NestedValue = exports.$NestedValue = Symbol("NestedValue");