noodl-loader
Version:
Loader for noodl applications
31 lines • 1.3 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AssetType = exports.ExtractType = exports._id = exports.idKey = exports.baseRemoteConfigUrl = void 0;
exports.baseRemoteConfigUrl = 'https://public.aitmed.com/config';
exports.idKey = `noodl-loader:id`;
exports._id = {
extractor: Symbol.for(`noodl-loader:extractor`),
fileSystemHost: Symbol.for(`noodl-loader:file-system-host`),
strategy: Symbol.for(`noodl-loader:strategy`),
urlStrategy: Symbol.for(`noodl-loader:url-strategy`),
};
var ExtractType;
(function (ExtractType) {
ExtractType["Unknown"] = "Unknown";
ExtractType["Asset"] = "Asset";
ExtractType["CadlEndpoint"] = "CadlEndpoint";
ExtractType["Config"] = "Config";
ExtractType["Page"] = "Page";
})(ExtractType = exports.ExtractType || (exports.ExtractType = {}));
var AssetType;
(function (AssetType) {
AssetType["Unknown"] = "Unknown";
AssetType["Document"] = "Document";
AssetType["Image"] = "Image";
AssetType["Preload"] = "Preload";
AssetType["Page"] = "Page";
AssetType["Script"] = "Script";
AssetType["Text"] = "Text";
AssetType["Video"] = "Video";
})(AssetType = exports.AssetType || (exports.AssetType = {}));
//# sourceMappingURL=constants.js.map