@platformos/platformos-check-docs-updater 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/data/app_block_entry.json +13 -0
- package/data/default_setting_values.json +24 -0
- package/data/filters.json +7 -0
- package/data/graphql.graphql +12964 -0
- package/data/latest.json +2 -0
- package/data/local_block_entry.json +25 -0
- package/data/manifest_theme.json +19 -0
- package/data/manifest_theme_app_extension.json +10 -0
- package/data/objects.json +6 -0
- package/data/preset.json +72 -0
- package/data/preset_blocks.json +91 -0
- package/data/section.json +208 -0
- package/data/setting.json +1353 -0
- package/data/settings.json +10 -0
- package/data/shopify_system_translations.json +2432 -0
- package/data/tags.json +7 -0
- package/data/targetted_block_entry.json +15 -0
- package/data/theme_block.json +91 -0
- package/data/theme_block_entry.json +14 -0
- package/data/theme_settings.json +83 -0
- package/data/translations.json +63 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -0
- package/dist/themeLiquidDocsDownloader.d.ts +23 -0
- package/dist/themeLiquidDocsDownloader.js +148 -0
- package/dist/themeLiquidDocsDownloader.js.map +1 -0
- package/dist/themeLiquidDocsManager.d.ts +34 -0
- package/dist/themeLiquidDocsManager.js +175 -0
- package/dist/themeLiquidDocsManager.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils.d.ts +5 -0
- package/dist/utils.js +18 -0
- package/dist/utils.js.map +1 -0
- package/package.json +42 -0
- package/scripts/cli.js +48 -0
- package/src/index.ts +8 -0
- package/src/themeLiquidDocsDownloader.ts +192 -0
- package/src/themeLiquidDocsManager.spec.ts +103 -0
- package/src/themeLiquidDocsManager.ts +255 -0
- package/src/utils.ts +12 -0
- package/tsconfig.build.json +7 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Manifests = exports.Resources = exports.ThemeGraphQLSchema = exports.ThemeCustomSchemas = exports.ThemeLiquidDocsRoot = exports.ThemeLiquidDocsRootFallback = exports.root = void 0;
|
|
7
|
+
exports.downloadSchema = downloadSchema;
|
|
8
|
+
exports.downloadResource = downloadResource;
|
|
9
|
+
exports.downloadGraphQLSchema = downloadGraphQLSchema;
|
|
10
|
+
exports.graphQLPath = graphQLPath;
|
|
11
|
+
exports.download = download;
|
|
12
|
+
exports.resourcePath = resourcePath;
|
|
13
|
+
exports.resourceUrl = resourceUrl;
|
|
14
|
+
exports.schemaPath = schemaPath;
|
|
15
|
+
exports.schemaUrl = schemaUrl;
|
|
16
|
+
exports.exists = exists;
|
|
17
|
+
exports.downloadThemeLiquidDocs = downloadThemeLiquidDocs;
|
|
18
|
+
const env_paths_1 = __importDefault(require("env-paths"));
|
|
19
|
+
const node_fetch_1 = __importDefault(require("node-fetch"));
|
|
20
|
+
const promises_1 = __importDefault(require("node:fs/promises"));
|
|
21
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
22
|
+
const utils_1 = require("./utils");
|
|
23
|
+
const he_1 = __importDefault(require("he"));
|
|
24
|
+
const paths = (0, env_paths_1.default)('theme-liquid-docs');
|
|
25
|
+
exports.root = paths.cache;
|
|
26
|
+
exports.ThemeLiquidDocsRootFallback = 'https://raw.githubusercontent.com/Shopify/theme-liquid-docs/main';
|
|
27
|
+
exports.ThemeLiquidDocsRoot = 'https://documentation.platformos.com/api/liquid';
|
|
28
|
+
exports.ThemeCustomSchemas = ['tags', 'latest', 'objects', 'filters'];
|
|
29
|
+
exports.ThemeGraphQLSchema = 'https://documentation.platformos.com/api/graphql/schema';
|
|
30
|
+
exports.Resources = [
|
|
31
|
+
'filters',
|
|
32
|
+
'objects',
|
|
33
|
+
'tags',
|
|
34
|
+
'shopify_system_translations',
|
|
35
|
+
'manifest_theme',
|
|
36
|
+
'manifest_theme_app_extension',
|
|
37
|
+
];
|
|
38
|
+
exports.Manifests = {
|
|
39
|
+
app: 'manifest_theme_app_extension',
|
|
40
|
+
theme: 'manifest_theme',
|
|
41
|
+
};
|
|
42
|
+
const THEME_LIQUID_DOCS = {
|
|
43
|
+
filters: 'filters.json',
|
|
44
|
+
objects: 'objects.json',
|
|
45
|
+
tags: 'tags.json',
|
|
46
|
+
latest: 'latest.json',
|
|
47
|
+
shopify_system_translations: 'data/shopify_system_translations.json',
|
|
48
|
+
manifest_theme: 'schemas/manifest_theme.json',
|
|
49
|
+
manifest_theme_app_extension: 'schemas/manifest_theme_app_extension.json',
|
|
50
|
+
};
|
|
51
|
+
async function downloadSchema(relativeUri, destination = exports.root, log = utils_1.noop) {
|
|
52
|
+
const remotePath = schemaUrl(relativeUri);
|
|
53
|
+
const localPath = schemaPath(relativeUri, destination);
|
|
54
|
+
const text = await download(remotePath, log);
|
|
55
|
+
await promises_1.default.writeFile(localPath, text, 'utf8');
|
|
56
|
+
return text;
|
|
57
|
+
}
|
|
58
|
+
async function downloadResource(resource, destination = exports.root, log = utils_1.noop) {
|
|
59
|
+
const remotePath = resourceUrl(resource);
|
|
60
|
+
const localPath = resourcePath(resource, destination);
|
|
61
|
+
const text = await download(remotePath, log);
|
|
62
|
+
await promises_1.default.writeFile(localPath, text, 'utf8');
|
|
63
|
+
return text;
|
|
64
|
+
}
|
|
65
|
+
async function downloadGraphQLSchema(destination = exports.root, log = utils_1.noop) {
|
|
66
|
+
const localPath = graphQLPath(destination);
|
|
67
|
+
const text = await download(exports.ThemeGraphQLSchema, log);
|
|
68
|
+
await promises_1.default.writeFile(localPath, he_1.default.decode(text), 'utf8');
|
|
69
|
+
return text;
|
|
70
|
+
}
|
|
71
|
+
function graphQLPath(destination = exports.root) {
|
|
72
|
+
return node_path_1.default.join(destination, `graphql.graphql`);
|
|
73
|
+
}
|
|
74
|
+
async function download(path, log) {
|
|
75
|
+
if (path.startsWith('file:')) {
|
|
76
|
+
return await promises_1.default
|
|
77
|
+
.readFile(path.replace(/^file:/, ''), 'utf8')
|
|
78
|
+
.then((0, utils_1.tap)(() => log(`Using local file: ${path}`)))
|
|
79
|
+
.catch((error) => {
|
|
80
|
+
log(`Failed to read local file: ${path}`);
|
|
81
|
+
throw error;
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
log(path);
|
|
86
|
+
const res = await (0, node_fetch_1.default)(path);
|
|
87
|
+
return res.text();
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
function resourcePath(resource, destination = exports.root) {
|
|
91
|
+
return node_path_1.default.join(destination, `${resource}.json`);
|
|
92
|
+
}
|
|
93
|
+
function resourceUrl(resource) {
|
|
94
|
+
let resourceRoot = `${exports.ThemeLiquidDocsRootFallback}`;
|
|
95
|
+
if (exports.ThemeCustomSchemas.includes(resource)) {
|
|
96
|
+
resourceRoot = exports.ThemeLiquidDocsRoot;
|
|
97
|
+
}
|
|
98
|
+
const relativePath = THEME_LIQUID_DOCS[resource];
|
|
99
|
+
return `${resourceRoot}/${relativePath}`;
|
|
100
|
+
}
|
|
101
|
+
function schemaPath(relativeUri, destination = exports.root) {
|
|
102
|
+
return node_path_1.default.resolve(destination, node_path_1.default.basename(relativeUri));
|
|
103
|
+
}
|
|
104
|
+
function schemaUrl(relativeUri) {
|
|
105
|
+
const schemaRoot = process.env.SHOPIFY_TLD_ROOT
|
|
106
|
+
? `file:${process.env.SHOPIFY_TLD_ROOT}`
|
|
107
|
+
: exports.ThemeLiquidDocsRootFallback;
|
|
108
|
+
return `${schemaRoot}/schemas/${relativeUri}`;
|
|
109
|
+
}
|
|
110
|
+
async function exists(path) {
|
|
111
|
+
try {
|
|
112
|
+
await promises_1.default.stat(path);
|
|
113
|
+
return true;
|
|
114
|
+
}
|
|
115
|
+
catch (e) {
|
|
116
|
+
return false;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
async function downloadThemeLiquidDocs(destination, log) {
|
|
120
|
+
if (!(await exists(destination))) {
|
|
121
|
+
await promises_1.default.mkdir(destination);
|
|
122
|
+
}
|
|
123
|
+
const resources = ['latest'].concat(exports.Resources);
|
|
124
|
+
const resourceContents = await Promise.all(resources.map((file) => {
|
|
125
|
+
return downloadResource(file, destination, log)
|
|
126
|
+
.then((0, utils_1.tap)(() => log(`Successfully downloaded latest resource:\n\t${resourceUrl(file)}\n\t> ${resourcePath(file, destination)}`)))
|
|
127
|
+
.catch((error) => {
|
|
128
|
+
log(`Failed to download latest resource:\n\t${resourceUrl(file)} to\n\t${resourcePath(file, destination)}\n${error}`);
|
|
129
|
+
throw error;
|
|
130
|
+
});
|
|
131
|
+
}));
|
|
132
|
+
const manifests = Object.values(exports.Manifests)
|
|
133
|
+
.map((resource) => resources.indexOf(resource))
|
|
134
|
+
.map((index) => resourceContents[index])
|
|
135
|
+
.map((manifest) => JSON.parse(manifest));
|
|
136
|
+
const relativeUris = manifests.flatMap((manifest) => manifest.schemas.map((schema) => schema.uri));
|
|
137
|
+
await Promise.all(unique(relativeUris).map((uri) => downloadSchema(uri, destination, log)
|
|
138
|
+
.then((0, utils_1.tap)(() => log(`Successfully downloaded schema:\n\t${schemaUrl(uri)}\n\t> ${schemaPath(uri, destination)}`)))
|
|
139
|
+
.catch((error) => {
|
|
140
|
+
log(`Failed to download schema: ${uri}, ${error}`);
|
|
141
|
+
throw error;
|
|
142
|
+
})));
|
|
143
|
+
await downloadGraphQLSchema(destination, log);
|
|
144
|
+
}
|
|
145
|
+
function unique(array) {
|
|
146
|
+
return [...new Set(array).values()];
|
|
147
|
+
}
|
|
148
|
+
//# sourceMappingURL=themeLiquidDocsDownloader.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themeLiquidDocsDownloader.js","sourceRoot":"","sources":["../src/themeLiquidDocsDownloader.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { FilterEntry, JsonValidationSet, ObjectEntry, SchemaDefinition, TagEntry, ThemeDocset, Translations } from '@platformos/platformos-check-common';
|
|
2
|
+
import { Logger } from './utils';
|
|
3
|
+
export declare class ThemeLiquidDocsManager implements ThemeDocset, JsonValidationSet {
|
|
4
|
+
private log;
|
|
5
|
+
constructor(log?: Logger);
|
|
6
|
+
filters: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<FilterEntry[]>>;
|
|
7
|
+
objects: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<ObjectEntry[]>>;
|
|
8
|
+
liquidDrops: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<ObjectEntry[]>>;
|
|
9
|
+
tags: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<TagEntry[]>>;
|
|
10
|
+
graphQL: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<string | null>>;
|
|
11
|
+
systemTranslations: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<Translations>>;
|
|
12
|
+
schemas: {
|
|
13
|
+
(x: "theme" | "app"): Promise<SchemaDefinition[]>;
|
|
14
|
+
force(x: "theme" | "app"): Promise<SchemaDefinition[]>;
|
|
15
|
+
invalidate(x: "theme" | "app"): void;
|
|
16
|
+
clearCache(): void;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* The setup method checks that the latest revision matches the one from
|
|
20
|
+
* Shopify/theme-liquid-docs. If there's a diff in revision, it means
|
|
21
|
+
* that the documentations that you have locally are out of date.
|
|
22
|
+
*
|
|
23
|
+
* The setup method then downloads the other files.
|
|
24
|
+
*/
|
|
25
|
+
setup: import("@platformos/platformos-check-common").MemoedFunction<() => Promise<void>>;
|
|
26
|
+
private latestRevision;
|
|
27
|
+
private loadResource;
|
|
28
|
+
private load;
|
|
29
|
+
private loadSchema;
|
|
30
|
+
private loadGraphQL;
|
|
31
|
+
private loaders;
|
|
32
|
+
private schemaLoaders;
|
|
33
|
+
private graphQLLoaders;
|
|
34
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ThemeLiquidDocsManager = void 0;
|
|
7
|
+
const promises_1 = __importDefault(require("node:fs/promises"));
|
|
8
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
9
|
+
const themeLiquidDocsDownloader_1 = require("./themeLiquidDocsDownloader");
|
|
10
|
+
const utils_1 = require("./utils");
|
|
11
|
+
class ThemeLiquidDocsManager {
|
|
12
|
+
constructor(log = utils_1.noop) {
|
|
13
|
+
this.log = log;
|
|
14
|
+
this.filters = (0, utils_1.memo)(async () => {
|
|
15
|
+
return findSuitableResource(this.loaders('filters'), JSON.parse, [], this.log);
|
|
16
|
+
});
|
|
17
|
+
this.objects = (0, utils_1.memo)(async () => {
|
|
18
|
+
return findSuitableResource(this.loaders('objects'), JSON.parse, [], this.log);
|
|
19
|
+
});
|
|
20
|
+
this.liquidDrops = (0, utils_1.memo)(async () => {
|
|
21
|
+
return findSuitableResource(this.loaders('objects'), JSON.parse, [], this.log);
|
|
22
|
+
});
|
|
23
|
+
this.tags = (0, utils_1.memo)(async () => {
|
|
24
|
+
return findSuitableResource(this.loaders('tags'), JSON.parse, [], this.log);
|
|
25
|
+
});
|
|
26
|
+
this.graphQL = (0, utils_1.memo)(async () => {
|
|
27
|
+
return findSuitableResource(this.graphQLLoaders(), (x) => x, null, this.log);
|
|
28
|
+
});
|
|
29
|
+
this.systemTranslations = (0, utils_1.memo)(async () => {
|
|
30
|
+
return findSuitableResource(this.loaders('shopify_system_translations'), JSON.parse, {}, this.log);
|
|
31
|
+
});
|
|
32
|
+
this.schemas = (0, utils_1.memoize)((mode) => findSuitableResource(this.loaders(themeLiquidDocsDownloader_1.Manifests[mode]), JSON.parse, {
|
|
33
|
+
schemas: [],
|
|
34
|
+
}, this.log).then((manifest) => {
|
|
35
|
+
return Promise.all(manifest.schemas.map(async (schemaDefinition) => {
|
|
36
|
+
let schemaRoot = `${themeLiquidDocsDownloader_1.ThemeLiquidDocsRootFallback}/schemas`;
|
|
37
|
+
if (themeLiquidDocsDownloader_1.ThemeCustomSchemas.includes(schemaDefinition.uri)) {
|
|
38
|
+
schemaRoot = themeLiquidDocsDownloader_1.ThemeLiquidDocsRoot;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
uri: `${schemaRoot}/${schemaDefinition.uri}`,
|
|
42
|
+
fileMatch: schemaDefinition.fileMatch,
|
|
43
|
+
schema: await findSuitableResource(this.schemaLoaders(schemaDefinition.uri), utils_1.identity, '', this.log),
|
|
44
|
+
};
|
|
45
|
+
}));
|
|
46
|
+
}), (utils_1.identity));
|
|
47
|
+
/**
|
|
48
|
+
* The setup method checks that the latest revision matches the one from
|
|
49
|
+
* Shopify/theme-liquid-docs. If there's a diff in revision, it means
|
|
50
|
+
* that the documentations that you have locally are out of date.
|
|
51
|
+
*
|
|
52
|
+
* The setup method then downloads the other files.
|
|
53
|
+
*/
|
|
54
|
+
this.setup = (0, utils_1.memo)(async () => {
|
|
55
|
+
try {
|
|
56
|
+
if (!(await (0, themeLiquidDocsDownloader_1.exists)(themeLiquidDocsDownloader_1.root))) {
|
|
57
|
+
await promises_1.default.mkdir(themeLiquidDocsDownloader_1.root, { recursive: true });
|
|
58
|
+
}
|
|
59
|
+
const local = await this.latestRevision();
|
|
60
|
+
await (0, themeLiquidDocsDownloader_1.downloadResource)('latest', themeLiquidDocsDownloader_1.root, this.log);
|
|
61
|
+
const remote = await this.latestRevision();
|
|
62
|
+
if (local !== remote) {
|
|
63
|
+
await (0, themeLiquidDocsDownloader_1.downloadThemeLiquidDocs)(themeLiquidDocsDownloader_1.root, this.log);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
catch (error) {
|
|
67
|
+
if (error instanceof Error) {
|
|
68
|
+
this.log(`Failed to setup with the following error: ${error.message}`);
|
|
69
|
+
}
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
async latestRevision() {
|
|
75
|
+
const latest = await findSuitableResource([loader(() => this.load('latest'), 'loadLatestRevision')], JSON.parse, {}, this.log);
|
|
76
|
+
return latest['revision'] ?? '';
|
|
77
|
+
}
|
|
78
|
+
async loadResource(name) {
|
|
79
|
+
// Always wait for setup first. Since it's memoized, this will always
|
|
80
|
+
// be the same promise.
|
|
81
|
+
await this.setup();
|
|
82
|
+
return this.load(name).then((0, utils_1.tap)(() => this.log(`Loaded resource from ${(0, themeLiquidDocsDownloader_1.resourcePath)(name)}`)));
|
|
83
|
+
}
|
|
84
|
+
async load(name) {
|
|
85
|
+
return promises_1.default.readFile((0, themeLiquidDocsDownloader_1.resourcePath)(name), 'utf8');
|
|
86
|
+
}
|
|
87
|
+
async loadSchema(relativeUri) {
|
|
88
|
+
return promises_1.default
|
|
89
|
+
.readFile((0, themeLiquidDocsDownloader_1.schemaPath)(relativeUri), 'utf8')
|
|
90
|
+
.then((0, utils_1.tap)(() => this.log(`Loaded schema from ${(0, themeLiquidDocsDownloader_1.schemaPath)(relativeUri)}`)));
|
|
91
|
+
}
|
|
92
|
+
async loadGraphQL() {
|
|
93
|
+
return promises_1.default.readFile((0, themeLiquidDocsDownloader_1.graphQLPath)(), 'utf8').then((0, utils_1.tap)(() => this.log(`Loaded graphQL`)));
|
|
94
|
+
}
|
|
95
|
+
loaders(name) {
|
|
96
|
+
return [
|
|
97
|
+
loader(() => this.loadResource(name), `loadResource(${name})`),
|
|
98
|
+
loader(() => fallbackResource(name, this.log), `fallbackResource(${name})`),
|
|
99
|
+
];
|
|
100
|
+
}
|
|
101
|
+
schemaLoaders(relativeUri) {
|
|
102
|
+
return [
|
|
103
|
+
loader(() => this.loadSchema(relativeUri), `loadSchema(${relativeUri})`),
|
|
104
|
+
loader(() => fallbackSchema(relativeUri, this.log), `fallbackSchema(${relativeUri})`),
|
|
105
|
+
];
|
|
106
|
+
}
|
|
107
|
+
graphQLLoaders() {
|
|
108
|
+
return [
|
|
109
|
+
loader(() => this.loadGraphQL(), `loadGraphQL()`),
|
|
110
|
+
loader(() => fallbackGraphQL(this.log), `fallbackSchema()`),
|
|
111
|
+
];
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.ThemeLiquidDocsManager = ThemeLiquidDocsManager;
|
|
115
|
+
function loader(fn, loaderName) {
|
|
116
|
+
return Object.assign(fn, { loaderName });
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Find the first resource that can be loaded and transformed.
|
|
120
|
+
*
|
|
121
|
+
* Will try to load the resource from the loaders in order. If the loader
|
|
122
|
+
* throws an error, it will try the next loader. If all loaders throw an
|
|
123
|
+
* error, it will return the default value.
|
|
124
|
+
*
|
|
125
|
+
* This should allow us to load the latest version of the resource if it's
|
|
126
|
+
* available, and fall back to the local version if it's not. If neither
|
|
127
|
+
* work, we'll just return the default value.
|
|
128
|
+
*/
|
|
129
|
+
async function findSuitableResource(dataLoaders, transform, defaultValue, log) {
|
|
130
|
+
for (const loader of dataLoaders) {
|
|
131
|
+
try {
|
|
132
|
+
return transform(await loader());
|
|
133
|
+
}
|
|
134
|
+
catch (e) {
|
|
135
|
+
log(`Failed to load or transform ${loader.loaderName} with the following error:\n${e instanceof Error ? e.message : e}`);
|
|
136
|
+
continue;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
return defaultValue;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* The root directory for the data files. This is different in the VS Code build
|
|
143
|
+
* (since those files are copied to the dist folder at a different relative path)
|
|
144
|
+
*/
|
|
145
|
+
function dataRoot() {
|
|
146
|
+
if (process.env.WEBPACK_MODE) {
|
|
147
|
+
return node_path_1.default.resolve(__dirname, './data');
|
|
148
|
+
}
|
|
149
|
+
else {
|
|
150
|
+
return node_path_1.default.resolve(__dirname, '../data');
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
/** Returns the at-build-time path to the fallback data file. */
|
|
154
|
+
async function fallbackResource(name, log) {
|
|
155
|
+
const sourcePath = node_path_1.default.resolve(dataRoot(), `${name}.json`);
|
|
156
|
+
return promises_1.default
|
|
157
|
+
.readFile(sourcePath, 'utf8')
|
|
158
|
+
.then((0, utils_1.tap)(() => log(`Loaded fallback resource\n\t${name} from\n\t${sourcePath}`)));
|
|
159
|
+
}
|
|
160
|
+
/** Returns the at-build-time path to the fallback schema file. */
|
|
161
|
+
async function fallbackSchema(
|
|
162
|
+
/** e.g. themes/section.json */
|
|
163
|
+
relativeUri, log) {
|
|
164
|
+
const sourcePath = node_path_1.default.resolve(dataRoot(), node_path_1.default.basename(relativeUri));
|
|
165
|
+
return promises_1.default
|
|
166
|
+
.readFile(sourcePath, 'utf8')
|
|
167
|
+
.then((0, utils_1.tap)(() => log(`Loaded fallback schema\n\t${relativeUri} from\n\t${sourcePath}`)));
|
|
168
|
+
}
|
|
169
|
+
async function fallbackGraphQL(log) {
|
|
170
|
+
const sourcePath = node_path_1.default.resolve(dataRoot(), `graphql.graphql`);
|
|
171
|
+
return promises_1.default
|
|
172
|
+
.readFile(sourcePath, 'utf8')
|
|
173
|
+
.then((0, utils_1.tap)(() => log(`Loaded fallback graphQL from\n\t${sourcePath}`)));
|
|
174
|
+
}
|
|
175
|
+
//# sourceMappingURL=themeLiquidDocsManager.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themeLiquidDocsManager.js","sourceRoot":"","sources":["../src/themeLiquidDocsManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../liquid-html-parser/dist/types.d.ts","../../liquid-html-parser/dist/stage-1-cst.d.ts","../../liquid-html-parser/dist/stage-2-ast.d.ts","../../../node_modules/ohm-js/index.d.ts","../../liquid-html-parser/dist/errors.d.ts","../../liquid-html-parser/dist/grammar.d.ts","../../liquid-html-parser/dist/conditional-comment.d.ts","../../liquid-html-parser/dist/index.d.ts","../../platformos-check-common/dist/types/schema-prop-factory.d.ts","../../platformos-common/dist/AbstractFileSystem.d.ts","../../../node_modules/vscode-uri/lib/umd/uri.d.ts","../../../node_modules/vscode-uri/lib/umd/utils.d.ts","../../../node_modules/vscode-uri/lib/umd/index.d.ts","../../platformos-common/dist/documents-locator/DocumentsLocator.d.ts","../../platformos-common/dist/translation-provider/TranslationProvider.d.ts","../../platformos-common/dist/path-utils.d.ts","../../platformos-common/dist/index.d.ts","../../platformos-check-common/dist/fixes/utils.d.ts","../../platformos-check-common/dist/fixes/correctors/base-corrector.d.ts","../../platformos-check-common/dist/fixes/correctors/json-corrector.d.ts","../../platformos-check-common/dist/fixes/correctors/string-corrector.d.ts","../../platformos-check-common/dist/fixes/correctors/graphql-corrector.d.ts","../../platformos-check-common/dist/fixes/correctors/index.d.ts","../../platformos-check-common/dist/fixes/autofix.d.ts","../../platformos-check-common/dist/fixes/apply-fix-to-string.d.ts","../../platformos-check-common/dist/fixes/index.d.ts","../../platformos-check-common/dist/jsonc/types.d.ts","../../platformos-check-common/dist/types/theme-liquid-docs.d.ts","../../platformos-check-common/dist/types/schemas/setting.d.ts","../../platformos-check-common/dist/types/schemas/preset.d.ts","../../platformos-check-common/dist/types/schemas/theme-block.d.ts","../../platformos-check-common/dist/types/schemas/section.d.ts","../../platformos-check-common/dist/types/schemas/template.d.ts","../../platformos-check-common/dist/types/schemas/index.d.ts","../../platformos-check-common/dist/types/theme-schemas.d.ts","../../platformos-check-common/dist/liquid-doc/liquidDoc.d.ts","../../platformos-check-common/dist/types.d.ts","../../platformos-check-common/dist/utils/object.d.ts","../../platformos-check-common/dist/utils/array.d.ts","../../platformos-check-common/dist/utils/position.d.ts","../../platformos-check-common/dist/utils/error.d.ts","../../platformos-check-common/dist/utils/types.d.ts","../../platformos-check-common/dist/utils/memo.d.ts","../../platformos-check-common/dist/utils/indexBy.d.ts","../../platformos-check-common/dist/utils/block.d.ts","../../platformos-check-common/dist/utils/index.d.ts","../../platformos-check-common/dist/AugmentedThemeDocset.d.ts","../../platformos-check-common/dist/checks/index.d.ts","../../platformos-check-common/dist/context-utils.d.ts","../../platformos-check-common/dist/find-root.d.ts","../../platformos-check-common/dist/ignore.d.ts","../../platformos-check-common/dist/json.d.ts","../../../node_modules/vscode-json-languageservice/lib/umd/jsonContributions.d.ts","../../../node_modules/vscode-json-languageservice/lib/umd/jsonSchema.d.ts","../../../node_modules/vscode-languageserver-types/lib/umd/main.d.ts","../../../node_modules/vscode-languageserver-textdocument/lib/umd/main.d.ts","../../../node_modules/vscode-json-languageservice/lib/umd/jsonLanguageTypes.d.ts","../../../node_modules/vscode-json-languageservice/lib/umd/jsonLanguageService.d.ts","../../platformos-check-common/dist/JSONValidator.d.ts","../../platformos-check-common/dist/path.d.ts","../../platformos-check-common/dist/to-schema.d.ts","../../platformos-check-common/dist/to-source-code.d.ts","../../platformos-check-common/dist/visitor.d.ts","../../platformos-check-common/dist/liquid-doc/arguments.d.ts","../../platformos-check-common/dist/liquid-doc/utils.d.ts","../../platformos-check-common/dist/index.d.ts","../../../node_modules/env-paths/index.d.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../src/utils.ts","../../../node_modules/@types/he/index.d.ts","../src/themeLiquidDocsDownloader.ts","../src/themeLiquidDocsManager.ts","../src/index.ts","../../../node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/tinyrainbow/dist/index-c1cfc5e9.d.ts","../../../node_modules/tinyrainbow/dist/node.d.ts","../../../node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/@vitest/runner/dist/tasks-3ZnPj1LR.d.ts","../../../node_modules/@vitest/utils/dist/types-Bxe-2Udy.d.ts","../../../node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/@vitest/utils/diff.d.ts","../../../node_modules/@vitest/runner/dist/types.d.ts","../../../node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/@vitest/utils/error.d.ts","../../../node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/environment.LoooBwUu.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/rollup/dist/rollup.d.ts","../../../node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/vite/types/customEvent.d.ts","../../../node_modules/vite/types/hot.d.ts","../../../node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts","../../../node_modules/esbuild/lib/main.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/postcss/lib/input.d.ts","../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/postcss/lib/declaration.d.ts","../../../node_modules/postcss/lib/root.d.ts","../../../node_modules/postcss/lib/warning.d.ts","../../../node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/postcss/lib/processor.d.ts","../../../node_modules/postcss/lib/result.d.ts","../../../node_modules/postcss/lib/document.d.ts","../../../node_modules/postcss/lib/rule.d.ts","../../../node_modules/postcss/lib/node.d.ts","../../../node_modules/postcss/lib/comment.d.ts","../../../node_modules/postcss/lib/container.d.ts","../../../node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/postcss/lib/list.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/vite/dist/node/runtime.d.ts","../../../node_modules/vite/types/importGlob.d.ts","../../../node_modules/vite/types/metadata.d.ts","../../../node_modules/vite/dist/node/index.d.ts","../../../node_modules/@vitest/snapshot/dist/environment-Ddx0EDtY.d.ts","../../../node_modules/@vitest/snapshot/dist/rawSnapshot-CPNkto81.d.ts","../../../node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/@vitest/snapshot/dist/environment.d.ts","../../../node_modules/@vitest/snapshot/environment.d.ts","../../../node_modules/vitest/dist/chunks/config.Cy0C388Z.d.ts","../../../node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../../../node_modules/vite-node/dist/index-z0R8hVRu.d.ts","../../../node_modules/vite-node/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/vite-node/dist/client.d.ts","../../../node_modules/vite-node/dist/server.d.ts","../../../node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/@vitest/runner/utils.d.ts","../../../node_modules/tinybench/dist/index.d.cts","../../../node_modules/vitest/dist/chunks/benchmark.geERunq4.d.ts","../../../node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/@vitest/snapshot/manager.d.ts","../../../node_modules/vitest/dist/chunks/reporters.nr4dxCkA.d.ts","../../../node_modules/vitest/dist/chunks/worker.tN5KGIih.d.ts","../../../node_modules/vitest/dist/chunks/worker.B9FxPCaC.d.ts","../../../node_modules/vitest/dist/chunks/vite.CzKp4x9w.d.ts","../../../node_modules/@vitest/expect/dist/chai.d.cts","../../../node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/@vitest/expect/index.d.ts","../../../node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/@vitest/mocker/dist/types-DZOqTgiN.d.ts","../../../node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/mocker.cRtM890J.d.ts","../../../node_modules/vitest/dist/chunks/suite.B2jumIFP.d.ts","../../../node_modules/expect-type/dist/utils.d.ts","../../../node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/expect-type/dist/branding.d.ts","../../../node_modules/expect-type/dist/messages.d.ts","../../../node_modules/expect-type/dist/index.d.ts","../../../node_modules/vitest/dist/index.d.ts","../src/themeLiquidDocsManager.spec.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/line-column/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sarif/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[124,173,187,222,313],[124,173,179,222],[124,173,215,222,320],[124,173,187,222],[124,173],[124,173,184,187,222,317,318,319],[124,173,314,318,320,323],[124,173,184,185,222,325],[124,173,184,187,189,192,204,215,222],[124,173,334,336,337,338,339,340,341,342,343,344,345,346],[124,173,334,335,337,338,339,340,341,342,343,344,345,346],[124,173,335,336,337,338,339,340,341,342,343,344,345,346],[124,173,334,335,336,338,339,340,341,342,343,344,345,346],[124,173,334,335,336,337,339,340,341,342,343,344,345,346],[124,173,334,335,336,337,338,340,341,342,343,344,345,346],[124,173,334,335,336,337,338,339,341,342,343,344,345,346],[124,173,334,335,336,337,338,339,340,342,343,344,345,346],[124,173,334,335,336,337,338,339,340,341,343,344,345,346],[124,173,334,335,336,337,338,339,340,341,342,344,345,346],[124,173,334,335,336,337,338,339,340,341,342,343,345,346],[124,173,334,335,336,337,338,339,340,341,342,343,344,346],[124,173,334,335,336,337,338,339,340,341,342,343,344,345],[124,173,366],[124,173,351],[124,173,355,356,357],[124,173,354],[124,173,356],[124,173,333,352,353,358,361,363,364,365],[124,173,353,359,360,366],[124,173,359,362],[124,173,353,354,359,366],[124,173,353,366],[124,173,347,348,349,350],[124,173,187,215,222,223,224],[124,173,187,204,222],[124,170,173],[124,172,173],[173],[124,173,178,207],[124,173,174,179,184,192,204,215],[124,173,174,175,184,192],[119,120,121,124,173],[124,173,176,216],[124,173,177,178,185,193],[124,173,178,204,212],[124,173,179,181,184,192],[124,172,173,180],[124,173,181,182],[124,173,183,184],[124,172,173,184],[124,173,184,185,186,204,215],[124,173,184,185,186,199,204,207],[124,166,173,181,184,187,192,204,215],[124,173,184,185,187,188,192,204,212,215],[124,173,187,189,204,212,215],[122,123,124,125,126,127,128,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[124,173,184,190],[124,173,191,215],[124,173,181,184,192,204],[124,173,193],[124,173,194],[124,172,173,195],[124,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[124,173,197],[124,173,198],[124,173,184,199,200],[124,173,199,201,216,218],[124,173,184,204,205,207],[124,173,206,207],[124,173,204,205],[124,173,207],[124,173,208],[124,170,173,204,209],[124,173,184,210,211],[124,173,210,211],[124,173,178,192,204,212],[124,173,213],[124,173,192,214],[124,173,187,198,215],[124,173,178,216],[124,173,204,217],[124,173,191,218],[124,173,219],[124,166,173],[124,166,173,184,186,195,204,207,215,217,218,220],[124,173,204,221],[124,173,371,410],[124,173,371,395,410],[124,173,410],[124,173,371],[124,173,371,396,410],[124,173,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409],[124,173,396,410],[124,173,185,204,222,316],[124,173,185,324],[124,173,187,222,316,322],[124,173,184,187,189,204,212,215,221,222],[124,173,235,236,240],[124,173,299],[124,173,302],[124,173,236,237,240,241,243],[124,173,236],[124,173,236,237,240],[124,173,236,237],[124,173,288],[124,173,276],[124,173,231,276,277],[124,173,231,276],[124,173,279],[124,173,292],[124,173,239],[124,173,231,238],[124,173,232],[124,173,231,232,233,235],[124,173,231],[124,173,242],[124,173,306,307],[124,173,306,307,308,309],[124,173,306,308],[124,173,306],[124,173,268],[124,173,266,268],[124,173,257,265,266,267,269],[124,173,255],[124,173,258,263,268,271],[124,173,254,271],[124,173,258,259,262,263,264,271],[124,173,258,259,260,262,263,271],[124,173,255,256,257,258,259,263,264,265,267,268,269,271],[124,173,253,255,256,257,258,259,260,262,263,264,265,266,267,268,269,270],[124,173,253,271],[124,173,258,260,261,263,264,271],[124,173,262,271],[124,173,263,264,268,271],[124,173,256,266],[124,173,246,247],[124,173,234],[124,138,142,173,215],[124,138,173,204,215],[124,133,173],[124,135,138,173,212,215],[124,173,192,212],[124,173,222],[124,133,173,222],[124,135,138,173,192,215],[124,130,131,134,137,173,184,204,215],[124,138,145,173],[124,130,136,173],[124,138,159,160,173],[124,134,138,173,207,215,222],[124,159,173,222],[124,132,133,173,222],[124,138,173],[124,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,173],[124,138,153,173],[124,138,145,146,173],[124,136,138,146,147,173],[124,137,173],[124,130,133,138,173],[124,138,142,146,147,173],[124,142,173],[124,136,138,141,173,215],[124,130,135,138,145,173],[124,173,204],[124,133,138,159,173,220,222],[124,173,282,283],[124,173,282],[124,173,275,282,283,297],[124,173,184,185,187,188,189,192,204,212,215,221,222,247,248,249,250,251,252,271,272,273,274],[124,173,248,249,250,251],[124,173,248,249,250],[124,173,248],[124,173,249],[124,173,247],[124,173,244,289,290,311],[124,173,231,244,278,280,311],[124,173,303],[124,173,185,204,231,236,244,245,275,278,281,284,285,286,287,291,293,297,298,311],[124,173,244,289,290,291,311],[124,173,275,294],[124,173,220,295],[124,173,244,245,278,281,284,311],[124,173,185,204,220,231,236,240,244,245,275,278,280,281,284,285,286,287,289,290,291,293,294,295,296,297,298,300,301,303,304,305,310,311],[109,124,173],[106,108,124,173],[104,105,106,107,124,173],[62,63,124,173],[62,124,173],[52,55,124,173],[55,124,173],[52,54,56,57,58,124,173],[51,52,124,173],[52,53,124,173],[88,97,124,173],[88,109,124,173],[88,124,173],[68,88,124,173],[68,124,173],[70,88,124,173],[71,72,73,88,124,173],[69,74,75,76,124,173],[77,87,88,89,92,93,94,95,98,99,100,101,102,103,110,111,112,113,114,115,116,124,173],[59,117,124,173],[59,88,124,173],[64,88,124,173],[59,60,68,73,77,78,79,86,87,124,173],[80,81,82,83,84,124,173],[80,124,173],[80,81,124,173],[117,124,173],[85,88,124,173],[89,90,91,92,93,94,95,96,124,173],[93,124,173],[124,173,228,229],[117,118,124,173,186,194,225,226,227],[124,173,226,228,229,311],[117,124,173,186,194,226,228],[61,64,124,173],[61,65,66,67,124,173],[61,124,173]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","impliedFormat":1},"fb72a606c1c51af5529f0a627469095299190b00d61c9aa07eda53da5183839b","c2c2ed5be2951c13badc973f66ecb8103a23f949a6e59a069ec3e1cfeb7142f4","0cae963a24a07d6b28bd3e267ec6f47bbde5241ac28686ab83c60c974dfdbaf9",{"version":"d453d897241f706e869eca60171925b2e961ce8c31b96c8e403633a0a48f7fd9","impliedFormat":99},"c2f3eddcf8103e0daeb22908e2a7a3b90919c389e6922db5a49969febdb9584d","ef64f6266555497f4db6174c47def441fff4e70d764c9b947fa8a233e013e27e","5ac8b6aaf267c0b11e9838ba1db68af808573582755581c74a272b19b8e2294f","bb8480e953ab803378aaa5d5ca57457db94283e064d3944237066d7bb21b961c","d696811bee60b9e389ed86115162ff91970bfdae851be5b06f512344d62f2665","91ac818cfe971b7f51b6edb1f07dc9890f88e5dae71dee1c1c7ac8582ef0e8ad",{"version":"657e6dc684415721980e91e97785f1b8e6da4134e194de757d2d3733c54b4f06","impliedFormat":1},{"version":"bad1bc59cf9ba7f2b8efc0f7342b141843cbf3d3d791fa13df4ff9b86db26df9","impliedFormat":1},{"version":"a2ca9f3aee02a7fa0ec6f80afc09c5465191e5ca513be720bf858f5da275e66b","impliedFormat":1},"b7321aa647e6fee7c46e5a880633a9029270487ec624038c7818c0a218c1108f","86940cbc519c40d30b59e34e100641eab1b9ebe768e1a5f3783865f10c466408","2452756f7df5a8bc9344f26526d1e8a441dbdbddf2670e3b3fbfa502f5ca7bf8","574e62889f9d3942dfc46b57bbe1b6ac0a57e8a221d8f318d54561943d577752","842816b7673a697b0e029263fecc236f9a6822734077d2a3bd5c0df417acb26a","b71b9658e445ed96b48e3a0ca617ce158be237dc26957e36e0244febb4775d65","6a419ddaa86bc50688a09e7dcd53c7a970134e98deab81ac3b277768d52ee890","1205470b6b12b7740a1f71ef6578ae7f38c60fe33288668cbf9364956d460af4","36a1c84372024adc9646dfa9a5c5fc8825aeea7e6d49cc275f1c0c1d274927e5","cfad7fe2177204437052838e222384cfecfe2a617fcd8ee39442d91023926300","0324f51bc5264fc25e36b80d24819c7deecaa216269933d2ae8d1ebf3a528251","a16126e2a5ca9d84ce3017f6716e4b58b52ec35333e8625565f57d983d81edb6","495178000d2653db69251902ebe8b49a87c8a3ab049ac7b3544eb71502ead162","785804d92769f4053ee6d13751cdb680372c79c7da0160ee5b1062bacb250e53","8de783b95a2a66f67106397d12643437313853bfb9aedb98a487bb817d87a366","11be0a211386e9517f3a2920f535ecd3759861b7000cb20da135ac426acb49ff","a6176da753ad949d977f86dfb8e6be00cdf40e9156bf1b5782ae63d1f6f0e128","e3d9f6009c2d98f4c90f1abf7ab77392335c32ecb0e834356790da7ef25e84b6","6b77fa3826615bb84b0860490bd6a743821cd4c024a4fbecaf8a4ea8fd6fadfb","b4f1cd91be8cccd40c9db394aa924b1ff8e782d6146fab3892db676446909032","28ecf46d89fba78517dbca051dac65e05f6695eb4d937ea4a70f4375d9dcff45","0e4af55fd244c97d211e11e92fa76c90b47e7f989fb3ba7fb180bbc285e0c8c5","73eb092c64eb5e99fc20e49ce452010e1b60847ba898c8b17682ae34cadfefbf","841de00cf317a62a19ccc9435b1e813cc6244773ee19412a6d67dd7a6614e5e9","4b1eab75af427cc45c9902acaf0fb48fa49ec3d03da2d08faa4178d6a778a4e5","b73b292ea1a8b7fddfbe3d7de1de022362fc86ffe10d4225f6c81ac06983e1df","aa96cf4781282c3f1e529577791ce9cc44d409567c74c38dadcbbbebf92fa075","d7ae879da8a11c60c81f375bd40ecbb51c6b66b32638ccfea03a0ff8e5d14841","8bc27c81bc4f8ce6587a54505b75330e7fe07777c7ff0f29536075cff23f128a","df4287db6885be2623ed1804526a23e34f67ee06db7ef463616c4afb5f2bcfdc","69f3b64eddd51c579340eaa88b0d661dfe3e088cecca6599f9d53811dd4a5a18","c06a83daffe333c200ee1511ed777ef90b23acce5c2311b0e0d759cf24e78235","b19d351f717b3ef5784f3e7203e448bf1e8a8e04bb02a3dbd6ab9f54a84a3139","f8ad7752eb1938792efd7bddf61b6cef594c40ee38975501e957acef75c6ca92","eed11d71f310265898405f1d75a39a138005b01f963e839627d2c4a83db928b5","dc9762e1094cd290ce7ce4c4e96ef6c2f5547a6de6f768c6bf6c6d59b9f848f3","6cf1315cef6bd23d7aa4446356183442f2c895f600f537ef5f7dfb98d2c01f7a","5d0d92b2f89b97af873c729a8b6ea084785a7e552605781911ab2c74ae1079f0","d2d337d92f555b846ab8b2a5c9fafc8e4b5058802e65d9fa3d6942552faf80c1",{"version":"d1eaa6456434da5abcc2211f1ba8ac16205e06aaa64bb6ff92cb32987f46e89a","impliedFormat":1},{"version":"9a346f9804b713c20a9ab9f95460fb2f20e4281849893f4c892a55809874a5a4","impliedFormat":1},{"version":"2e900e22ef301dafb3a35df7aaab4f139bf1602c8e5dc0bb0ca8b24305af388e","impliedFormat":1},{"version":"96a56b3bbf8346c584c5d58db4fb8adc58982e4e9f2929488ad5aeb89ddc19f8","impliedFormat":1},{"version":"687fe26725f3716645ea6d861af80c49c19b37685696b3b191cbc6ce762a6466","impliedFormat":1},{"version":"079dd814fa01d224b99ea794eba05e8a4debc0a70c60550fd46d6754183f47cc","impliedFormat":1},"1eed959b222304bb930b7793075cacaa7f0973ccf76c46181418310e6fd29468","cef0403aa8a5e10074fa8cb6ea486428d8737bc708bbc25a2114e13e140776f3","653f8d6e79ce6a1d1fc317b3e6843fa924196b85e4ec42a7d2e9916c6e5eeba3","3762e4acd7a978ed17655c9aa96456183dc28d6de0ba0f3da79c76be724eeb39","8220ad0d119f0a8f0ee06e90b7c15a2ba225b3dd93068ddd8fd7a4bfa54bf6b1","2e2031b772b20484be2f5a6b2e40c81fe6326b8334713c7c2e947fb965fa2671","9ad52642cdeb08cbd0081b348bd460d426d075e1aca568c8665b70a604a968e2","6fc1810cdf2667ac4a92f2f4465838766abec9b11eeaa2af99be84e618c736dc",{"version":"6bc60b4956b1e7f38b44938f14aeaf6fc79f1aa72a8a3281116521a418c968af","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb4105d0ea2ab2bfcb4f77ff8585691d5569c90ae15f4fa8d5ff9fb42b910b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"df48adbf5b82b79ed989ec3bef2979d988b94978907fd86b4f30ba2b668e49de","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"7b988bc259155186e6b09dd8b32856d9e45c8d261e63c19abaf590bb6550f922","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe7b52f993f9336b595190f3c1fcc259bb2cf6dcb4ac8fdb1e0454cc5df7301e","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"5f91ae201f65c3b4a97d3c040f764747198363c74ca09c121af44aecf46bc7c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"c8420c7c2b778b334587a4c0311833b5212ff2f684ea37b2f0e2b117f1d7210d","impliedFormat":1},{"version":"b6b08215821c9833b0e8e30ea1ed178009f2f3ff5d7fae3865ee42f97cc87784","impliedFormat":1},{"version":"3f735210f444dc3fd2d4d2f020d195fe827dad5e30a6d743807c5d1de3a2be73","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"3e81d8b837057db6f9c82263e0ef7e5b9a55437342e7028eb8003199ccc69604","impliedFormat":1},{"version":"ed58b9974bb3114f39806c9c2c6258c4ffa6a255921976a7c53dfa94bf178f42","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9727a118ce60808e62457c89762fe5a4e2be8e9fd0112d12432d1bafdba942f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"3a90b9beac4c2bfdf6517faae0940a042b81652badf747df0a7c7593456f6ebe","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"cee74f5970ffc01041e5bffc3f324c20450534af4054d2c043cb49dbbd4ec8f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"71122b94871f11a2be216426470523b679a318b08b34dab23e5e4ba9bdf54c23","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"bdf1feb266c87edbee61f12ceaaef60ab0e2e5dba70ca19360b6448911c53d52","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","impliedFormat":1},{"version":"3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","impliedFormat":1},"3701528c2e10f67ddbacfd1567352aa40917c4cc3a44481c98639a8114c35e21",{"version":"160f0ead84a9f7633dab85d5ad548656728f1f425c37dc1569e5138158217f59","impliedFormat":1},"9faba76c74fb1664632719f183fff20e17522ca5fa2de8f7939015a073b4d3de","77b7f2d781ad1c94478b48080176aa693828e4af1b9e33a6e53536c1a4e81ffa","76cdf61c6f6ef27ead9960665fcd2eceed811670e0cc8707675fb0a7385cc75b",{"version":"d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","impliedFormat":99},{"version":"369ba5259e66ca8c7d35e3234f7a2a0863a770fdb8266505747c65cf346a0804","impliedFormat":99},{"version":"64d984f55025daf604f670b7dfd090ea765f2098aee871174ef2ee3e94479098","impliedFormat":99},{"version":"f147b6710441cf3ec3234adf63b0593ce5e8c9b692959d21d3babc8454bcf743","impliedFormat":99},{"version":"e96d5373a66c2cfbbc7e6642cf274055aa2c7ff6bd37be7480c66faf9804db6d","impliedFormat":99},{"version":"02bcdd7a76c5c1c485cbf05626d24c86ac8f9a1d8dc31f8924108bbaa4cf3ba9","impliedFormat":99},{"version":"c874ab6feac6e0fdf9142727c9a876065777a5392f14b0bbcf869b1e69eb46b5","impliedFormat":99},{"version":"7c553fc9e34773ddbaabe0fa1367d4b109101d0868a008f11042bee24b5a925d","impliedFormat":99},{"version":"9962ce696fbdce2421d883ca4b062a54f982496625437ae4d3633376c5ad4a80","impliedFormat":99},{"version":"05c7aef6a4e496b93c2e682cced8903c0dfe6340d04f3fe616176e2782193435","impliedFormat":99},{"version":"e3ea467c4a7f743f3548c9ed61300591965b1d12c08c8bb9aaff8a002ba95fce","impliedFormat":99},{"version":"4c17183a07a63bea2653fbfc0a942b027160ddbee823024789a415f9589de327","impliedFormat":99},{"version":"500a67e158e4025f27570ab6a99831680852bb45a44d4c3647ab7567feb1fb4c","impliedFormat":99},{"version":"3e2203c892297ea44b87470fde51b3d48cfe3eeb6901995de429539462894464","impliedFormat":99},{"version":"c84bf7a4abc5e7fdf45971a71b25b0e0d34ccd5e720a866dd78bb71d60d41a3f","impliedFormat":99},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"068edc96705c11c7ff5adb82c57ee2212d2379bf52f088542abcdcecfcc7b500","affectsGlobalScope":true,"impliedFormat":1},{"version":"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87","impliedFormat":99},{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"4d979e3c12ffb6497d2b1dc5613130196d986fff764c4526360c0716a162e7e7","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"80781460eca408fe8d2937d9fdbbb780d6aac35f549621e6200c9bee1da5b8fe","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","impliedFormat":1},{"version":"c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"2ed6489ef46eb61442d067c08e87e3db501c0bfb2837eee4041a27bf3e792bb0","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"d60fe6d59d4e19ecc65359490b8535e359ca4b760d2cdb56897ca75d09d41ba3","impliedFormat":1},{"version":"f45a2a8b1777ecb50ed65e1a04bb899d4b676529b7921bd5d69b08573a00c832","impliedFormat":1},{"version":"774b783046ba3d473948132d28a69f52a295b2f378f2939304118ba571b1355e","impliedFormat":1},{"version":"b5734e05c787a40e4f9efe71f16683c5f7dc3bdb0de7c04440c855bd000f8fa7","impliedFormat":1},{"version":"14ba97f0907144771331e1349fdccb5a13526eba0647e6b447e572376d811b6f","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"7165050eddaed878c2d2cd3cafcaf171072ac39e586a048c0603712b5555f536","impliedFormat":1},{"version":"82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","impliedFormat":99},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"257b83faa134d971c738a6b9e4c47e59bb7b23274719d92197580dd662bfafc3","impliedFormat":99},{"version":"e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","impliedFormat":99},{"version":"5ada1f8a9580c0f7478fe03ae3e07e958f0b79bdfb9dd50eeb98c1324f40011b","impliedFormat":99},{"version":"a8301dc90b4bd9fba333226ee0f1681aeeff1bd90233a8f647e687cb4b7d3521","impliedFormat":99},{"version":"e3225dc0bec183183509d290f641786245e6652bc3dce755f7ef404060693c35","impliedFormat":99},{"version":"f2d1a59a658165341b0e2b7879aa2e19ea6a709146b2d3f70ee8a07159d3d08e","impliedFormat":99},{"version":"09a03870ed8c55d7453bc9ad684df88965f2f770f987481ca71b8a09be5205bc","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"2cdd50ddc49e2d608ee848fc4ab0db9a2716624fabb4209c7c683d87e54d79c5","impliedFormat":99},{"version":"e431d664338b8470abb1750d699c7dfcebb1a25434559ef85bb96f1e82de5972","impliedFormat":99},{"version":"2c4254139d037c3caca66ce291c1308c1b5092cfcb151eb25980db932dd3b01a","impliedFormat":99},{"version":"970ae00ed018cb96352dc3f37355ef9c2d9f8aa94d7174ccd6d0ed855e462097","impliedFormat":99},{"version":"d2f8dee457ef7660b604226d471d55d927c3051766bdd80353553837492635c3","impliedFormat":99},{"version":"110a503289a2ef76141ffff3ffceb9a1c3662c32748eb9f6777a2bd0866d6fb1","impliedFormat":99},{"version":"e666e31d323fef5642f87db0da48a83e58f0aaf9e3823e87eabd8ec7e0441a36","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":1},{"version":"310e6b62c493ce991624169a1c1904015769d947be88dc67e00adc7ebebcfa87","impliedFormat":99},{"version":"62fefda288160bf6e435b21cc03d3fbac11193d8d3bd0e82d86623cca7691c29","impliedFormat":99},{"version":"b7e28e06011460436d5c2ec2996846ac0c451e135357fc5a7269e5665a32fbd7","impliedFormat":99},{"version":"fcc46a8bcbf9bef21023bba1995160a25f0bc590ca3563ec44c315b4f4c1b18a","impliedFormat":99},{"version":"0309a01650023994ed96edbd675ea4fdc3779a823ce716ad876cc77afb792b62","impliedFormat":99},{"version":"f13d7beeea58e219daef3a40e0dc4f2bd7d9581ac04cedec236102a12dfd2090","impliedFormat":99},{"version":"669573548930fb7d0a0761b827e203dc623581e21febf0be80fb02414f217d74","impliedFormat":99},{"version":"48c411efce1848d1ed55de41d7deb93cbf7c04080912fd87aa517ed25ef42639","affectsGlobalScope":true,"impliedFormat":1},{"version":"a094636c05f3e75cb072684dd42cd25a4c1324bec4a866706c85c04cecd49613","affectsGlobalScope":true,"impliedFormat":99},{"version":"fe2d63fcfdde197391b6b70daf7be8c02a60afa90754a5f4a04bdc367f62793d","impliedFormat":99},{"version":"9a3e2c85ec1ab7a0874a19814cc73c691b716282cb727914093089c5a8475955","impliedFormat":99},{"version":"cbdc781d2429935c9c42acd680f2a53a9f633e8de03290ec6ea818e4f7bff19a","impliedFormat":99},{"version":"9f6d9f5dd710922f82f69abf9a324e28122b5f31ae6f6ce78427716db30a377e","impliedFormat":99},{"version":"ac2414a284bdecfd6ab7b87578744ab056cd04dd574b17853cd76830ef5b72f2","impliedFormat":99},{"version":"c3f921bbc9d2e65bd503a56fbc66da910e68467baedb0b9db0cc939e1876c0d7","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"4c8ca51077f382498f47074cf304d654aba5d362416d4f809dfdd5d4f6b3aaca","impliedFormat":1},{"version":"c6bddf16578495abc8b5546850b047f30c4b5a2a2b7fecefc0e11a44a6e91399","impliedFormat":1},{"version":"0cc99fbb161d78729d71fad66c6c363e3095862d6277160f29fa960744b785c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"2741bbe029b9dcf7039361cd3c723ff873fcda3c4126dbca2fd9638930879f1f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"82819f9ecc249a6a3e284003540d02ea1b1f56f410c23231797b9e1e4b9622df","impliedFormat":1},{"version":"81a109b6bb6adf5ed70f2c7e6d907b8c3adcf7b47b5ee09701c5f97370fd29b7","impliedFormat":1},{"version":"492f985316614ee57642a7b019eb17154c36c988d858325c3c2ecbe8e9a4ee1c","impliedFormat":1},{"version":"f6218314af6f492ce5461bdadac5b829f5b4b31a3d1da3d04e77ed0afe0829fb","impliedFormat":1},{"version":"7167d932a7e2e991084421bb22af20024ada5a046d948c742de0f89996de5d0b","impliedFormat":1},{"version":"c7da551241b7be719b7bd654ab12a5098c3206fbb189076dd2d8871011a6ab5a","impliedFormat":1},{"version":"e2d3bfa79f0fad3ad67dfb0685c50dbe19b364a440160a2d40d0e3f44c75938c","impliedFormat":1},{"version":"1c598f8d911f0bc39f04910c8c93f2f76fbb65f892ee5ecc38a2b58bb95af752","affectsGlobalScope":true,"impliedFormat":1},{"version":"87e4358eddd469426393408b4976bee1970c91634faa57a71f1db2c2f8dee9ba","impliedFormat":1},{"version":"4eadf1158f1ae8f7b0deea0f96b391359042cf74d1eb3ce1dacdb69de96e590d","impliedFormat":1},{"version":"f0120fc76274f614e7b8f5420a74abce69eee25b81e2084479fa426f33ccd46a","impliedFormat":1},{"version":"003f07cf566395059625b39785398f18652c8952e19790e7d6eeb22a9cbe0440","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","impliedFormat":1},{"version":"e0a45e86c5b8b3ecb551a13d0e6bbe98ea69f15a9cd91a8a9e7cc3458dc69bf3","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"a27e3ae43a5f47e33ea468801b0cd8070a6958ce70368e093b4418525534fc47","impliedFormat":1},{"version":"d58289beaadf0380170b0063569e1a01c60ee6b8f2dc3cccfff4fd965154d555","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"0b24a72109c8dd1b41f94abfe1bb296ba01b3734b8ac632db2c48ffc5dccaf01","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f1ceb4cbff7fc122b13f8a43e4d60e279a174c93420b2d2f76a6c8ce87934d7f","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"2b603cae1c11f97a113adac3f8ba8d60ee842c740c8139d41ab9d6ce202449a5","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"d1e9031cfefebb12d6672ef7d85faf2c5a23472f5b5be1909358db426fe82eef","impliedFormat":1},{"version":"cc0700b1b97e18a3d5d9184470502d8762ec85158819d662730c3a8c5d702584","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"f77ff4cd234d3fd18ddd5aeadb6f94374511931976d41f4b9f594cb71f7ce6f3","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"4f18b4e6081e5e980ef53ddf57b9c959d36cffe1eb153865f512a01aeffb5e1e","impliedFormat":1},{"version":"7f17d4846a88eca5fe71c4474ef687ee89c4acf9b5372ab9b2ee68644b7e0fe0","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"58e0cee50add50d4b6d47a935e26aeb0080d98c9cf729f8af389511cdfa10526","impliedFormat":1},{"version":"13ac133423d83cd4dc7d819a425cf78fbf2f8262fa818916d264e2abfb2ced6e","impliedFormat":1},{"version":"72c8ac810cce2f70a9de1b4b1ba65db76e29369693da1a53c70b879d2ad513bb","impliedFormat":1},{"version":"69e01ef9103d147fd603aef2b465b2bdb1e37ea287828d460d1fbdc4485d28d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4f439b1def30f14d145a0927619748f933adacd38390f6dae3fe5591df2f14c","impliedFormat":1}],"root":[226,[228,230],312],"options":{"allowJs":true,"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[314,1],[315,2],[321,3],[313,4],[246,5],[320,6],[324,7],[326,8],[227,5],[327,5],[322,5],[328,9],[329,5],[330,5],[331,5],[332,5],[333,5],[335,10],[336,11],[334,12],[337,13],[338,14],[339,15],[340,16],[341,17],[342,18],[343,19],[344,20],[345,21],[346,22],[367,23],[352,24],[358,25],[356,5],[355,26],[357,27],[366,28],[361,29],[363,30],[364,31],[365,32],[359,5],[360,32],[362,32],[354,32],[353,5],[348,5],[347,5],[350,24],[351,33],[349,24],[316,5],[325,5],[224,5],[225,34],[223,35],[170,36],[171,36],[172,37],[124,38],[173,39],[174,40],[175,41],[119,5],[122,42],[120,5],[121,5],[176,43],[177,44],[178,45],[179,46],[180,47],[181,48],[182,48],[183,49],[184,50],[185,51],[186,52],[125,5],[123,5],[187,53],[188,54],[189,55],[222,56],[190,57],[191,58],[192,59],[193,60],[194,61],[195,62],[196,63],[197,64],[198,65],[199,66],[200,66],[201,67],[202,5],[203,5],[204,68],[206,69],[205,70],[207,71],[208,72],[209,73],[210,74],[211,75],[212,76],[213,77],[214,78],[215,79],[216,80],[217,81],[218,82],[219,83],[126,5],[127,5],[128,5],[167,84],[168,5],[169,5],[220,85],[221,86],[368,5],[51,5],[318,5],[319,5],[369,5],[370,5],[395,87],[396,88],[371,89],[374,89],[393,87],[394,87],[384,87],[383,90],[381,87],[376,87],[389,87],[387,87],[391,87],[375,87],[388,87],[392,87],[377,87],[378,87],[390,87],[372,87],[379,87],[380,87],[382,87],[386,87],[397,91],[385,87],[373,87],[410,92],[409,5],[404,91],[406,93],[405,91],[398,91],[399,91],[401,91],[403,91],[407,93],[408,93],[400,93],[402,93],[317,94],[411,95],[323,96],[412,4],[413,5],[414,97],[298,5],[299,98],[300,99],[303,100],[302,5],[231,5],[244,101],[237,102],[241,103],[288,104],[289,105],[276,5],[279,106],[278,107],[292,107],[277,108],[280,109],[293,110],[301,5],[240,111],[239,112],[242,112],[233,113],[236,114],[285,113],[238,115],[232,5],[243,116],[129,5],[118,5],[252,5],[308,117],[310,118],[309,119],[307,120],[306,5],[55,5],[269,121],[267,122],[268,123],[256,124],[257,122],[264,125],[255,126],[260,127],[270,5],[261,128],[266,129],[271,130],[254,131],[262,132],[263,133],[258,134],[265,121],[259,135],[247,136],[253,5],[290,5],[234,5],[235,137],[49,5],[50,5],[10,5],[9,5],[2,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[3,5],[19,5],[20,5],[4,5],[21,5],[25,5],[22,5],[23,5],[24,5],[26,5],[27,5],[28,5],[5,5],[29,5],[30,5],[31,5],[32,5],[6,5],[36,5],[33,5],[34,5],[35,5],[37,5],[7,5],[38,5],[43,5],[44,5],[39,5],[40,5],[41,5],[42,5],[8,5],[48,5],[45,5],[46,5],[47,5],[1,5],[145,138],[155,139],[144,138],[165,140],[136,141],[135,142],[164,143],[158,144],[163,145],[138,146],[152,147],[137,148],[161,149],[133,150],[132,143],[162,151],[134,152],[139,153],[140,5],[143,153],[130,5],[166,154],[156,155],[147,156],[148,157],[150,158],[146,159],[149,160],[159,143],[141,161],[142,162],[151,163],[131,164],[154,155],[153,153],[157,5],[160,165],[286,166],[283,167],[284,166],[287,168],[282,5],[275,169],[272,170],[251,171],[249,172],[248,5],[250,173],[273,5],[274,174],[291,175],[281,176],[245,5],[304,177],[294,178],[305,179],[297,180],[296,181],[295,182],[311,183],[104,184],[109,185],[108,186],[105,5],[107,5],[106,5],[64,187],[62,5],[63,188],[58,5],[56,189],[57,190],[59,191],[53,192],[54,193],[52,5],[98,194],[110,195],[99,196],[100,197],[101,198],[76,196],[75,196],[70,196],[73,199],[74,200],[71,199],[72,199],[77,201],[69,196],[102,196],[117,202],[103,196],[78,5],[115,203],[87,196],[116,204],[111,205],[112,196],[113,204],[88,206],[60,5],[85,207],[81,208],[83,209],[80,5],[84,208],[82,209],[79,210],[86,211],[90,5],[96,196],[92,5],[97,212],[95,5],[94,213],[89,5],[91,196],[93,5],[114,196],[230,214],[228,215],[312,216],[229,217],[226,210],[61,5],[65,218],[68,219],[67,220],[66,218]],"affectedFilesPendingEmit":[[230,19],[228,19],[312,19],[229,19],[226,19]],"emitSignatures":[[226,"4a4148f65b9522fdd9b0848ba43d33570a0c34c322131346779d0d40c01bb9c5"],[228,"79fb3649b14d0f7cfbd50950d7292f36e93e779ae7ab8199fee0d817d446c1c5"],[229,"0673f5b0f84d08d9059327812277fe3ffb072f649acc28cee6ee4a09d07d436f"],[230,"cbd8e696aee9315710f3e458c135eeace914c6578821cdb4a1ba5c53c6f8bca1"],312],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export type Logger = (message: string) => void;
|
|
2
|
+
export declare const noop: () => void;
|
|
3
|
+
export declare const identity: <T>(x: T) => T;
|
|
4
|
+
export declare const tap: <T>(tappingFunction: (x: T) => void) => (x: T) => T;
|
|
5
|
+
export { memo, memoize } from '@platformos/platformos-check-common';
|