package.initializers.constants.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
export var HEADERS_KEYS = {
xCsrfToken: "X-CSRF-TOKEN",
contentType: "Content-Type",
accept: "Accept"
};
export var LOWERCASED = "__LOWERCASED__";
export var LOWERCASED_GLOBAL_REGEX = new RegExp(LOWERCASED, "g");
export var FORMATS = {
boldList: "boldList",
list: "list",
anyCase: "anyCase"
};
export var LIST_FORMATS = [FORMATS.boldList, FORMATS.list];
export var MAXIMUM_OFFLINE_DURATION = 10000;
//# sourceMappingURL=constants.js.map