@markuplint/ml-spec 1.7.0 → 2.0.0-dev.26

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.
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This file was automatically generated by json-schema-to-typescript.
3
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
+ * and run json-schema-to-typescript to regenerate this file.
5
+ */
6
+ export declare type AttributeType = ('String' | 'NonEmptyString' | 'Boolean' | 'Function' | 'Date' | 'Int' | 'Uint' | 'Float' | 'NonZeroUint' | 'ZeroToOne' | 'AcceptList' | 'AutoComplete' | 'BCP47' | 'Color' | 'ColSpan' | 'Coords' | 'Crossorigin' | 'DateTime' | 'Destination' | 'DOMID' | 'DOMIDList' | 'IRI' | 'ItemType' | 'LinkSizes' | 'LinkType' | 'LinkTypeList' | 'MediaQuery' | 'MediaQueryList' | 'MIMEType' | 'ReferrerPolicy' | 'RowSpan' | 'SourceSizeList' | 'SrcSet' | 'TabIndex' | 'Target' | 'URL' | 'URLHash' | 'URLList' | 'CSSAngle' | 'CSSBlendMode' | 'CSSClipPath' | 'CSSCustomIdent' | 'CSSDisplay' | 'CSSFilter' | 'CSSFontFamily' | 'CSSFontSize' | 'CSSFontVariant' | 'CSSFontWeight' | 'CSSMask' | 'CSSOpacity' | 'CSSTextDecoration' | 'CSSTransformList' | 'CSSTransformOrigin' | 'CSSURL' | 'SVGAnimatableValue' | 'SVGBeginValueList' | 'SVGClockValue' | 'SVGColorMatrix' | 'SVGDashArray' | 'SVGEndValueList' | 'SVGFilterPrimitiveReference' | 'SVGKernelMatrix' | 'SVGKeyPoints' | 'SVGKeySplines' | 'SVGKeyTimes' | 'SVGLanguageTags' | 'SVGLength' | 'SVGLengthList' | 'SVGNumberList' | 'SVGNumberOptionalNumber' | 'SVGOrigin' | 'SVGPaint' | 'SVGPathCommands' | 'SVGPercentage' | 'SVGPercentageList' | 'SVGPoints' | 'SVGPreserveAspectRatio' | 'SVGViewBox') | {
7
+ enum: string[];
8
+ };
9
+ export declare type AttributeCondition = {
10
+ ancestor: string;
11
+ } | {
12
+ self: string | string[];
13
+ };
14
+ export interface AttributesSchema {
15
+ tag: string;
16
+ attributes: (('#globalAttrs' | '#ariaAttrs' | '#SVGAnimationAdditionAttrs' | '#SVGAnimationAttributeTargetAttrs' | '#SVGAnimationEventAttrs' | '#SVGAnimationTargetElementAttrs' | '#SVGAnimationTimingAttrs' | '#SVGAnimationValueAttrs' | '#SVGConditionalProcessingAttrs' | '#SVGCoreAttrs' | '#SVGDocumentElementEventAttrs' | '#SVGDocumentEventAttrs' | '#SVGFilterPrimitiveAttrs' | '#SVGGlobalEventAttrs' | '#SVGGraphicalEventAttrs' | '#SVGPresentationAttrs' | '#SVGTransferFunctionAttrs' | '#XLinkAttrs') | AttributeJSON | DefineDefaultAttributeType)[];
17
+ }
18
+ export interface AttributeJSON {
19
+ name: string;
20
+ type: AttributeType | [AttributeType, ...AttributeType[]];
21
+ defaultValue?: string;
22
+ deprecated?: boolean;
23
+ required?: boolean | AttributeCondition;
24
+ requiredEither?: string[];
25
+ noUse?: boolean;
26
+ condition?: AttributeCondition;
27
+ }
28
+ export interface DefineDefaultAttributeType {
29
+ name: string;
30
+ defaultValue: string;
31
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export declare function getNS(namespaceURI: string): "svg" | "mml" | "html";
package/lib/get-ns.js ADDED
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getNS = void 0;
4
+ function getNS(namespaceURI) {
5
+ switch (namespaceURI) {
6
+ case 'http://www.w3.org/2000/svg': {
7
+ return 'svg';
8
+ }
9
+ case 'http://www.w3.org/1998/Math/MathML': {
10
+ return 'mml';
11
+ }
12
+ default: {
13
+ return 'html';
14
+ }
15
+ }
16
+ }
17
+ exports.getNS = getNS;
@@ -1,2 +1,2 @@
1
- import { MLDOMElementSpec, MLMLSpec } from './types';
2
- export declare function getSpecByTagName(tagName: string, specs: MLMLSpec): MLDOMElementSpec | null;
1
+ import type { MLDOMElementSpec, MLMLSpec } from './types';
2
+ export declare function getSpecByTagName(nameWithNS: string, specs: MLMLSpec): MLDOMElementSpec | null;
@@ -16,9 +16,8 @@ function getSpecOM({ specs }) {
16
16
  }
17
17
  return som;
18
18
  }
19
- function getSpecByTagName(tagName, specs) {
19
+ function getSpecByTagName(nameWithNS, specs) {
20
20
  const specOM = getSpecOM(specs);
21
- tagName = tagName.toLowerCase();
22
- return specOM[tagName] || null;
21
+ return specOM[nameWithNS] || null;
23
22
  }
24
23
  exports.getSpecByTagName = getSpecByTagName;
package/lib/get-spec.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ElementSpec, ExtendedSpec, MLMLSpec } from '@markuplint/ml-spec';
1
+ import type { ElementSpec, ExtendedSpec, MLMLSpec } from './types';
2
2
  /**
3
3
  * Merging HTML-spec schema and extended spec schemas
4
4
  *
@@ -7,7 +7,7 @@ import { ElementSpec, ExtendedSpec, MLMLSpec } from '@markuplint/ml-spec';
7
7
  * @param schemas `MLDocument.schemas`
8
8
  */
9
9
  export declare function getSpec(schemas: readonly [MLMLSpec, ...ExtendedSpec[]]): {
10
- cites: import("@markuplint/ml-spec").Cites;
11
- def: import("@markuplint/ml-spec").SpecDefs;
10
+ cites: import("./types").Cites;
11
+ def: import("./types").SpecDefs;
12
12
  specs: ElementSpec[];
13
13
  };
package/lib/get-spec.js CHANGED
@@ -10,8 +10,9 @@ const utils_1 = require("./utils");
10
10
  * @param schemas `MLDocument.schemas`
11
11
  */
12
12
  function getSpec(schemas) {
13
+ var _a, _b, _c;
13
14
  const [main, ...extendedSpecs] = schemas;
14
- const result = Object.assign({}, main);
15
+ const result = { ...main };
15
16
  for (const extendedSpec of extendedSpecs) {
16
17
  if (extendedSpec.cites) {
17
18
  result.cites = [...result.cites, ...extendedSpec.cites];
@@ -20,8 +21,11 @@ function getSpec(schemas) {
20
21
  if (extendedSpec.def['#ariaAttrs']) {
21
22
  result.def['#ariaAttrs'] = [...result.def['#ariaAttrs'], ...extendedSpec.def['#ariaAttrs']];
22
23
  }
23
- if (extendedSpec.def['#globalAttrs']) {
24
- result.def['#globalAttrs'] = [...result.def['#globalAttrs'], ...extendedSpec.def['#globalAttrs']];
24
+ if ((_a = extendedSpec.def['#globalAttrs']) === null || _a === void 0 ? void 0 : _a['#extends']) {
25
+ result.def['#globalAttrs']['#HTMLGlobalAttrs'] = [
26
+ ...(((_b = result.def['#globalAttrs']) === null || _b === void 0 ? void 0 : _b['#HTMLGlobalAttrs']) || []),
27
+ ...(((_c = extendedSpec.def['#globalAttrs']) === null || _c === void 0 ? void 0 : _c['#extends']) || []),
28
+ ];
25
29
  }
26
30
  if (extendedSpec.def['#roles']) {
27
31
  result.def['#roles'] = [...result.def['#roles'], ...extendedSpec.def['#roles']];
@@ -49,7 +53,12 @@ function getSpec(schemas) {
49
53
  continue;
50
54
  }
51
55
  const exSpec = exSpecs.splice(index, 1)[0];
52
- specs.push(Object.assign(Object.assign(Object.assign({}, elSpec), exSpec), { attributes: utils_1.mergeArray(elSpec.attributes, exSpec.attributes), categories: utils_1.mergeArray(elSpec.categories, exSpec.categories) }));
56
+ specs.push({
57
+ ...elSpec,
58
+ ...exSpec,
59
+ attributes: (0, utils_1.mergeArray)(elSpec.attributes, exSpec.attributes),
60
+ categories: (0, utils_1.mergeArray)(elSpec.categories, exSpec.categories),
61
+ });
53
62
  }
54
63
  result.specs = specs;
55
64
  }
package/lib/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export * from './permitted-structres';
2
+ export * from './attributes';
2
3
  export * from './get-spec-by-tag-name';
3
4
  export * from './get-spec';
5
+ export * from './get-ns';
4
6
  export * from './types';
package/lib/index.js CHANGED
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./permitted-structres"), exports);
5
- tslib_1.__exportStar(require("./get-spec-by-tag-name"), exports);
6
- tslib_1.__exportStar(require("./get-spec"), exports);
7
- tslib_1.__exportStar(require("./types"), exports);
4
+ (0, tslib_1.__exportStar)(require("./permitted-structres"), exports);
5
+ (0, tslib_1.__exportStar)(require("./attributes"), exports);
6
+ (0, tslib_1.__exportStar)(require("./get-spec-by-tag-name"), exports);
7
+ (0, tslib_1.__exportStar)(require("./get-spec"), exports);
8
+ (0, tslib_1.__exportStar)(require("./get-ns"), exports);
9
+ (0, tslib_1.__exportStar)(require("./types"), exports);
@@ -6,7 +6,7 @@
6
6
  export declare type PermittedContent = PermittedContentRequire | PermittedContentOptional | PermittedContentOneOrMore | PermittedContentZeroOrMore | PermittedContentChoice | PermittedContentInterleave;
7
7
  export declare type Target = Node | Node[];
8
8
  export declare type Node = string | '#text' | ContentModel;
9
- export declare type ContentModel = '#phrasing' | '#flow' | '#interactive' | '#heading' | '#sectioning' | '#metadata' | '#transparent' | '#embedded' | '#palpable' | '#script-supporting';
9
+ export declare type ContentModel = '#phrasing' | '#flow' | '#interactive' | '#heading' | '#sectioning' | '#metadata' | '#transparent' | '#embedded' | '#palpable' | '#script-supporting' | '#SVGAnimation' | '#SVGBasicShapes' | '#SVGContainer' | '#SVGDescriptive' | '#SVGFilterPrimitive' | '#SVGFont' | '#SVGGradient' | '#SVGGraphics' | '#SVGGraphicsReferencing' | '#SVGLightSource' | '#SVGNeverRendered' | '#SVGNone' | '#SVGPaintServer' | '#SVGRenderable' | '#SVGShape' | '#SVGStructural' | '#SVGStructurallyExternal' | '#SVGTextContent' | '#SVGTextContentChild' | '#SVGOtherXMLNamespace';
10
10
  export declare type PermittedContentSpec = PermittedContent[];
11
11
  export interface PermittedStructuresSchema {
12
12
  summary?: string;
package/lib/types.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { ContentModel, PermittedStructuresSchema } from './permitted-structres';
1
+ import type { AttributeCondition, AttributeType } from './attributes';
2
+ import type { ContentModel, PermittedStructuresSchema } from './permitted-structres';
2
3
  /**
3
4
  * markuplit Markup-language spec
4
5
  */
@@ -20,9 +21,13 @@ export declare type ExtendedSpec = {
20
21
  */
21
22
  export declare type Cites = string[];
22
23
  export declare type SpecDefs = {
23
- '#globalAttrs': Attribute[];
24
- '#roles': ARIRRoleAttribute[];
24
+ '#globalAttrs': Partial<{
25
+ '#extends': Attribute[];
26
+ '#HTMLGlobalAttrs': Attribute[];
27
+ [OtherGlobalAttrs: string]: Attribute[];
28
+ }>;
25
29
  '#ariaAttrs': ARIAAttribute[];
30
+ '#roles': ARIRRoleAttribute[];
26
31
  '#contentModels': {
27
32
  [model in ContentModel]?: string[];
28
33
  };
@@ -35,6 +40,11 @@ export declare type ElementSpec = {
35
40
  * Tag name
36
41
  */
37
42
  name: string;
43
+ /**
44
+ * Namespaces in XML
45
+ * @see https://www.w3.org/TR/xml-names/
46
+ */
47
+ namespace?: 'http://www.w3.org/1999/xhtml' | 'http://www.w3.org/2000/svg' | 'http://www.w3.org/1998/Math/MathML';
38
48
  /**
39
49
  * Reference URL
40
50
  */
@@ -119,24 +129,18 @@ declare type ElementCondition = {
119
129
  };
120
130
  export declare type Attribute = {
121
131
  name: string;
122
- type: AttributeType;
132
+ type: AttributeType | [AttributeType, ...AttributeType[]];
123
133
  description: string;
124
134
  caseSensitive?: true;
125
135
  experimental?: true;
126
136
  obsolete?: true;
127
- deprecated?: true;
137
+ deprecated?: boolean;
128
138
  nonStandard?: true;
129
- required?: true | AttributeCondition;
139
+ required?: boolean | AttributeCondition;
130
140
  requiredEither?: string[];
131
- enum?: string[];
132
141
  noUse?: boolean;
133
142
  condition?: AttributeCondition;
134
143
  };
135
- export declare type AttributeCondition = {
136
- ancestor?: string;
137
- self?: string | string[];
138
- };
139
- export declare type AttributeType = 'String' | 'NonEmptyString' | 'Boolean' | 'Function' | 'Date' | 'Int' | 'Uint' | 'Float' | 'NonZeroUint' | 'AcceptList' | 'AutoComplete' | 'BCP47' | 'Color' | 'ColSpan' | 'Coords' | 'DateTime' | 'Destination' | 'DOMID' | 'DOMIDList' | 'ItemType' | 'LinkSizes' | 'LinkType' | 'LinkTypeList' | 'MediaQuery' | 'MediaQueryList' | 'MIMEType' | 'ReferrerPolicy' | 'RowSpan' | 'SourceSizeList' | 'SrcSet' | 'TabIndex' | 'Target' | 'URL' | 'URLHash' | 'URLList';
140
144
  export declare type ARIRRoleAttribute = {
141
145
  name: string;
142
146
  description: string;
package/lib/utils.js CHANGED
@@ -21,7 +21,10 @@ function mergeArray(a, b) {
21
21
  result.push(bItem);
22
22
  continue;
23
23
  }
24
- const exItem = Object.assign(Object.assign({}, aItem), bItem);
24
+ const exItem = {
25
+ ...aItem,
26
+ ...bItem,
27
+ };
25
28
  result.push(exItem);
26
29
  }
27
30
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/ml-spec",
3
- "version": "1.7.0",
3
+ "version": "2.0.0-dev.26+6a10aede",
4
4
  "description": "Types and schema that specs of the Markup languages for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -15,13 +15,15 @@
15
15
  "build": "tsc",
16
16
  "dev": "tsc --build --watch",
17
17
  "clean": "tsc --build --clean",
18
- "schema": "json2ts ./schemas/permitted-structures.schema.json > ./src/permitted-structres.ts; prettier --write ./src/permitted-structres.ts; eslint --fix --config ../../../.eslintrc ./src/permitted-structres.ts"
18
+ "schema:structures": "json2ts ./schemas/permitted-structures.schema.json > ./src/permitted-structres.ts; prettier --write ./src/permitted-structres.ts; eslint --fix --config ../../../.eslintrc ./src/permitted-structres.ts",
19
+ "schema:attributes": "json2ts ./schemas/attributes.schema.json > ./src/attributes.ts; prettier --write ./src/attributes.ts; eslint --fix --config ../../../.eslintrc ./src/attributes.ts",
20
+ "schema": "yarn schema:structures; yarn schema:attributes;"
19
21
  },
20
22
  "dependencies": {
21
- "tslib": "^2.3.0"
23
+ "tslib": "^2.3.1"
22
24
  },
23
25
  "devDependencies": {
24
- "json-schema-to-typescript": "^10.1.4"
26
+ "json-schema-to-typescript": "^10.1.5"
25
27
  },
26
- "gitHead": "ffef90a8232a7cdd0f4eb12b11c071c184042500"
28
+ "gitHead": "6a10aede7385e2e97d0ba2c272a2e8c08e5429fd"
27
29
  }
@@ -1,25 +1,192 @@
1
1
  {
2
2
  "definitions": {
3
- "condition": {
3
+ "AttributeCondition": {
4
4
  "oneOf": [
5
5
  {
6
6
  "type": "object",
7
7
  "additionalProperties": false,
8
+ "required": ["ancestor"],
8
9
  "properties": {
9
- "ancestor": { "type": "string" }
10
+ "ancestor": {
11
+ "type": "string"
12
+ }
10
13
  }
11
14
  },
12
15
  {
13
16
  "type": "object",
14
17
  "additionalProperties": false,
18
+ "required": ["self"],
15
19
  "properties": {
16
20
  "self": {
17
21
  "type": ["string", "array"],
18
- "items": { "type": "string", "minItems": 2 }
22
+ "items": {
23
+ "type": "string",
24
+ "minItems": 2
25
+ }
19
26
  }
20
27
  }
21
28
  }
22
29
  ]
30
+ },
31
+ "AttributeType": {
32
+ "oneOf": [
33
+ {
34
+ "type": "string",
35
+ "enum": [
36
+ "String",
37
+ "NonEmptyString",
38
+ "Boolean",
39
+ "Function",
40
+ "Date",
41
+ "Int",
42
+ "Uint",
43
+ "Float",
44
+ "NonZeroUint",
45
+ "ZeroToOne",
46
+ "AcceptList",
47
+ "AutoComplete",
48
+ "BCP47",
49
+ "Color",
50
+ "ColSpan",
51
+ "Coords",
52
+ "Crossorigin",
53
+ "DateTime",
54
+ "Destination",
55
+ "DOMID",
56
+ "DOMIDList",
57
+ "IRI",
58
+ "ItemType",
59
+ "LinkSizes",
60
+ "LinkType",
61
+ "LinkTypeList",
62
+ "MediaQuery",
63
+ "MediaQueryList",
64
+ "MIMEType",
65
+ "ReferrerPolicy",
66
+ "RowSpan",
67
+ "SourceSizeList",
68
+ "SrcSet",
69
+ "TabIndex",
70
+ "Target",
71
+ "URL",
72
+ "URLHash",
73
+ "URLList",
74
+ "CSSAngle",
75
+ "CSSBlendMode",
76
+ "CSSClipPath",
77
+ "CSSCustomIdent",
78
+ "CSSDisplay",
79
+ "CSSFilter",
80
+ "CSSFontFamily",
81
+ "CSSFontSize",
82
+ "CSSFontVariant",
83
+ "CSSFontWeight",
84
+ "CSSMask",
85
+ "CSSOpacity",
86
+ "CSSTextDecoration",
87
+ "CSSTransformList",
88
+ "CSSTransformOrigin",
89
+ "CSSURL",
90
+ "SVGAnimatableValue",
91
+ "SVGBeginValueList",
92
+ "SVGClockValue",
93
+ "SVGColorMatrix",
94
+ "SVGDashArray",
95
+ "SVGEndValueList",
96
+ "SVGFilterPrimitiveReference",
97
+ "SVGKernelMatrix",
98
+ "SVGKeyPoints",
99
+ "SVGKeySplines",
100
+ "SVGKeyTimes",
101
+ "SVGLanguageTags",
102
+ "SVGLength",
103
+ "SVGLengthList",
104
+ "SVGNumberList",
105
+ "SVGNumberOptionalNumber",
106
+ "SVGOrigin",
107
+ "SVGPaint",
108
+ "SVGPathCommands",
109
+ "SVGPercentage",
110
+ "SVGPercentageList",
111
+ "SVGPoints",
112
+ "SVGPreserveAspectRatio",
113
+ "SVGViewBox"
114
+ ]
115
+ },
116
+ {
117
+ "type": "object",
118
+ "additionalProperties": false,
119
+ "required": ["enum"],
120
+ "properties": {
121
+ "enum": {
122
+ "type": "array",
123
+ "minLength": 1,
124
+ "uniqueItems": true,
125
+ "items": {
126
+ "type": "string"
127
+ }
128
+ }
129
+ }
130
+ }
131
+ ]
132
+ },
133
+ "AttributeJSON": {
134
+ "type": "object",
135
+ "additionalProperties": false,
136
+ "required": ["name", "type"],
137
+ "properties": {
138
+ "name": {
139
+ "type": "string"
140
+ },
141
+ "type": {
142
+ "oneOf": [
143
+ {
144
+ "$ref": "#/definitions/AttributeType"
145
+ },
146
+ {
147
+ "type": "array",
148
+ "minItems": 1,
149
+ "uniqueItems": true,
150
+ "items": {
151
+ "$ref": "#/definitions/AttributeType"
152
+ }
153
+ }
154
+ ]
155
+ },
156
+ "defaultValue": { "type": "string" },
157
+ "deprecated": { "type": "boolean" },
158
+ "required": {
159
+ "oneOf": [
160
+ {
161
+ "type": "boolean"
162
+ },
163
+ {
164
+ "$ref": "#/definitions/AttributeCondition"
165
+ }
166
+ ]
167
+ },
168
+ "requiredEither": {
169
+ "type": "array",
170
+ "items": {
171
+ "type": "string"
172
+ }
173
+ },
174
+ "noUse": {
175
+ "type": "boolean"
176
+ },
177
+ "condition": {
178
+ "$ref": "#/definitions/AttributeCondition"
179
+ }
180
+ }
181
+ },
182
+ "DefineDefaultAttributeType": {
183
+ "type": "object",
184
+ "additionalProperties": false,
185
+ "required": ["name", "defaultValue"],
186
+ "properties": {
187
+ "name": { "type": "string" },
188
+ "defaultValue": { "type": "string" }
189
+ }
23
190
  }
24
191
  },
25
192
  "type": "object",
@@ -29,65 +196,39 @@
29
196
  "tag": { "type": "string" },
30
197
  "attributes": {
31
198
  "type": "array",
199
+ "uniqueItems": true,
32
200
  "items": {
33
- "type": "object",
34
- "additionalProperties": false,
35
- "required": ["name", "type"],
36
- "properties": {
37
- "name": { "type": "string" },
38
- "type": {
201
+ "anyOf": [
202
+ {
39
203
  "type": "string",
40
204
  "enum": [
41
- "String",
42
- "NonEmptyString",
43
- "Boolean",
44
- "Function", // JavaScript function body
45
- "Date",
46
- "Int", // Integer
47
- "Uint", // Non-negative integer
48
- "Float", // Floating-point number
49
- "NonZeroUint", // Non-negative integer greater than zero
50
- "AcceptList", // https://html.spec.whatwg.org/multipage/input.html#attr-input-accept
51
- "AutoComplete", // https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-detail-tokens
52
- "BCP47", // https://tools.ietf.org/html/bcp47
53
- "Color", // https://drafts.csswg.org/css-color/#typedef-color
54
- "ColSpan", // https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-colspan
55
- "Coords", // https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-coords
56
- "DateTime", // https://html.spec.whatwg.org/multipage/text-level-semantics.html#datetime-value
57
- "Destination", // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-as
58
- "DOMID",
59
- "DOMIDList",
60
- "ItemType", // https://html.spec.whatwg.org/multipage/microdata.html#attr-itemtype
61
- "LinkSizes", // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes
62
- "LinkType", // https://html.spec.whatwg.org/multipage/links.html#linkTypes
63
- "LinkTypeList", // https://html.spec.whatwg.org/multipage/links.html#linkTypes
64
- "MediaQuery", // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-media-query-list
65
- "MediaQueryList", // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-media-query-list
66
- "MIMEType", // https://mimesniff.spec.whatwg.org/#valid-mime-type
67
- "ReferrerPolicy", // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#referrer-policy-attribute
68
- "RowSpan", // https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-rowspan
69
- "SourceSizeList", // https://html.spec.whatwg.org/multipage/images.html#sizes-attributes
70
- "SrcSet", // https://html.spec.whatwg.org/multipage/images.html#srcset-attribute
71
- "TabIndex", // https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex
72
- "Target", // https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-target
73
- "URL", // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces
74
- "URLHash", // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-hash-name-reference
75
- "URLList" // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces
205
+ "#globalAttrs",
206
+ "#ariaAttrs",
207
+ "#SVGAnimationAdditionAttrs",
208
+ "#SVGAnimationAttributeTargetAttrs",
209
+ "#SVGAnimationEventAttrs",
210
+ "#SVGAnimationTargetElementAttrs",
211
+ "#SVGAnimationTimingAttrs",
212
+ "#SVGAnimationValueAttrs",
213
+ "#SVGConditionalProcessingAttrs",
214
+ "#SVGCoreAttrs",
215
+ "#SVGDocumentElementEventAttrs",
216
+ "#SVGDocumentEventAttrs",
217
+ "#SVGFilterPrimitiveAttrs",
218
+ "#SVGGlobalEventAttrs",
219
+ "#SVGGraphicalEventAttrs",
220
+ "#SVGPresentationAttrs",
221
+ "#SVGTransferFunctionAttrs",
222
+ "#XLinkAttrs"
76
223
  ]
77
224
  },
78
- "deprecated": { "type": "boolean" },
79
- "required": {
80
- "oneOf": [{ "type": "boolean" }, { "$ref": "#/definitions/condition" }]
81
- },
82
- "requiredEither": { "type": "array", "items": { "type": "string" } },
83
- "enum": { "type": "array", "items": { "type": "string" }, "minLength": 1 },
84
- "noUse": {
85
- "type": "boolean"
225
+ {
226
+ "$ref": "#/definitions/AttributeJSON"
86
227
  },
87
- "condition": {
88
- "$ref": "#/definitions/condition"
228
+ {
229
+ "$ref": "#/definitions/DefineDefaultAttributeType"
89
230
  }
90
- }
231
+ ]
91
232
  }
92
233
  }
93
234
  }
@@ -0,0 +1,12 @@
1
+ {
2
+ "type": "object",
3
+ "additionalProperties": false,
4
+ "patternProperties": {
5
+ "^#[a-zA-Z]+Attrs$": {
6
+ "type": "array",
7
+ "items": {
8
+ "$ref": "./attributes.schema.json#/definitions/AttributeJSON"
9
+ }
10
+ }
11
+ }
12
+ }
@@ -3,10 +3,22 @@
3
3
  "Node": {
4
4
  "oneOf": [
5
5
  {
6
+ "description": "HTML Element",
6
7
  "type": "string",
7
- "pattern": "^[a-z][a-z0-9]+$"
8
+ "pattern": "^[a-z][a-z0-9]*$"
8
9
  },
9
10
  {
11
+ "description": "Namespaced HTML Element",
12
+ "type": "string",
13
+ "pattern": "^html:[a-z][a-z0-9]*$"
14
+ },
15
+ {
16
+ "description": "SVG Element",
17
+ "type": "string",
18
+ "pattern": "^svg:(?:[a-z][a-zA-Z0-9]*|[a-z][a-z0-9]*-[a-z][a-z0-9]*)$"
19
+ },
20
+ {
21
+ "description": "Text Node",
10
22
  "type": "string",
11
23
  "enum": ["#text"]
12
24
  },
@@ -25,7 +37,27 @@
25
37
  "#transparent",
26
38
  "#embedded",
27
39
  "#palpable",
28
- "#script-supporting"
40
+ "#script-supporting",
41
+ "#SVGAnimation",
42
+ "#SVGBasicShapes",
43
+ "#SVGContainer",
44
+ "#SVGDescriptive",
45
+ "#SVGFilterPrimitive",
46
+ "#SVGFont",
47
+ "#SVGGradient",
48
+ "#SVGGraphics",
49
+ "#SVGGraphicsReferencing",
50
+ "#SVGLightSource",
51
+ "#SVGNeverRendered",
52
+ "#SVGNone",
53
+ "#SVGPaintServer",
54
+ "#SVGRenderable",
55
+ "#SVGShape",
56
+ "#SVGStructural",
57
+ "#SVGStructurallyExternal",
58
+ "#SVGTextContent",
59
+ "#SVGTextContentChild",
60
+ "#SVGOtherXMLNamespace"
29
61
  ]
30
62
  },
31
63
  "Target": {
@@ -0,0 +1,140 @@
1
+ /* tslint:disable */
2
+ /**
3
+ * This file was automatically generated by json-schema-to-typescript.
4
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
+ * and run json-schema-to-typescript to regenerate this file.
6
+ */
7
+
8
+ export type AttributeType =
9
+ | (
10
+ | 'String'
11
+ | 'NonEmptyString'
12
+ | 'Boolean'
13
+ | 'Function'
14
+ | 'Date'
15
+ | 'Int'
16
+ | 'Uint'
17
+ | 'Float'
18
+ | 'NonZeroUint'
19
+ | 'ZeroToOne'
20
+ | 'AcceptList'
21
+ | 'AutoComplete'
22
+ | 'BCP47'
23
+ | 'Color'
24
+ | 'ColSpan'
25
+ | 'Coords'
26
+ | 'Crossorigin'
27
+ | 'DateTime'
28
+ | 'Destination'
29
+ | 'DOMID'
30
+ | 'DOMIDList'
31
+ | 'IRI'
32
+ | 'ItemType'
33
+ | 'LinkSizes'
34
+ | 'LinkType'
35
+ | 'LinkTypeList'
36
+ | 'MediaQuery'
37
+ | 'MediaQueryList'
38
+ | 'MIMEType'
39
+ | 'ReferrerPolicy'
40
+ | 'RowSpan'
41
+ | 'SourceSizeList'
42
+ | 'SrcSet'
43
+ | 'TabIndex'
44
+ | 'Target'
45
+ | 'URL'
46
+ | 'URLHash'
47
+ | 'URLList'
48
+ | 'CSSAngle'
49
+ | 'CSSBlendMode'
50
+ | 'CSSClipPath'
51
+ | 'CSSCustomIdent'
52
+ | 'CSSDisplay'
53
+ | 'CSSFilter'
54
+ | 'CSSFontFamily'
55
+ | 'CSSFontSize'
56
+ | 'CSSFontVariant'
57
+ | 'CSSFontWeight'
58
+ | 'CSSMask'
59
+ | 'CSSOpacity'
60
+ | 'CSSTextDecoration'
61
+ | 'CSSTransformList'
62
+ | 'CSSTransformOrigin'
63
+ | 'CSSURL'
64
+ | 'SVGAnimatableValue'
65
+ | 'SVGBeginValueList'
66
+ | 'SVGClockValue'
67
+ | 'SVGColorMatrix'
68
+ | 'SVGDashArray'
69
+ | 'SVGEndValueList'
70
+ | 'SVGFilterPrimitiveReference'
71
+ | 'SVGKernelMatrix'
72
+ | 'SVGKeyPoints'
73
+ | 'SVGKeySplines'
74
+ | 'SVGKeyTimes'
75
+ | 'SVGLanguageTags'
76
+ | 'SVGLength'
77
+ | 'SVGLengthList'
78
+ | 'SVGNumberList'
79
+ | 'SVGNumberOptionalNumber'
80
+ | 'SVGOrigin'
81
+ | 'SVGPaint'
82
+ | 'SVGPathCommands'
83
+ | 'SVGPercentage'
84
+ | 'SVGPercentageList'
85
+ | 'SVGPoints'
86
+ | 'SVGPreserveAspectRatio'
87
+ | 'SVGViewBox'
88
+ )
89
+ | {
90
+ enum: string[];
91
+ };
92
+ export type AttributeCondition =
93
+ | {
94
+ ancestor: string;
95
+ }
96
+ | {
97
+ self: string | string[];
98
+ };
99
+
100
+ export interface AttributesSchema {
101
+ tag: string;
102
+ attributes: (
103
+ | (
104
+ | '#globalAttrs'
105
+ | '#ariaAttrs'
106
+ | '#SVGAnimationAdditionAttrs'
107
+ | '#SVGAnimationAttributeTargetAttrs'
108
+ | '#SVGAnimationEventAttrs'
109
+ | '#SVGAnimationTargetElementAttrs'
110
+ | '#SVGAnimationTimingAttrs'
111
+ | '#SVGAnimationValueAttrs'
112
+ | '#SVGConditionalProcessingAttrs'
113
+ | '#SVGCoreAttrs'
114
+ | '#SVGDocumentElementEventAttrs'
115
+ | '#SVGDocumentEventAttrs'
116
+ | '#SVGFilterPrimitiveAttrs'
117
+ | '#SVGGlobalEventAttrs'
118
+ | '#SVGGraphicalEventAttrs'
119
+ | '#SVGPresentationAttrs'
120
+ | '#SVGTransferFunctionAttrs'
121
+ | '#XLinkAttrs'
122
+ )
123
+ | AttributeJSON
124
+ | DefineDefaultAttributeType
125
+ )[];
126
+ }
127
+ export interface AttributeJSON {
128
+ name: string;
129
+ type: AttributeType | [AttributeType, ...AttributeType[]];
130
+ defaultValue?: string;
131
+ deprecated?: boolean;
132
+ required?: boolean | AttributeCondition;
133
+ requiredEither?: string[];
134
+ noUse?: boolean;
135
+ condition?: AttributeCondition;
136
+ }
137
+ export interface DefineDefaultAttributeType {
138
+ name: string;
139
+ defaultValue: string;
140
+ }
package/src/get-ns.ts ADDED
@@ -0,0 +1,13 @@
1
+ export function getNS(namespaceURI: string) {
2
+ switch (namespaceURI) {
3
+ case 'http://www.w3.org/2000/svg': {
4
+ return 'svg';
5
+ }
6
+ case 'http://www.w3.org/1998/Math/MathML': {
7
+ return 'mml';
8
+ }
9
+ default: {
10
+ return 'html';
11
+ }
12
+ }
13
+ }
@@ -1,4 +1,4 @@
1
- import { Attribute, MLDOMElementSpec, MLMLSpec, SpecOM } from './types';
1
+ import type { Attribute, MLDOMElementSpec, MLMLSpec, SpecOM } from './types';
2
2
 
3
3
  function getSpecOM({ specs }: MLMLSpec): SpecOM {
4
4
  const som: SpecOM = {};
@@ -18,8 +18,7 @@ function getSpecOM({ specs }: MLMLSpec): SpecOM {
18
18
  return som;
19
19
  }
20
20
 
21
- export function getSpecByTagName(tagName: string, specs: MLMLSpec): MLDOMElementSpec | null {
21
+ export function getSpecByTagName(nameWithNS: string, specs: MLMLSpec): MLDOMElementSpec | null {
22
22
  const specOM = getSpecOM(specs);
23
- tagName = tagName.toLowerCase();
24
- return specOM[tagName] || null;
23
+ return specOM[nameWithNS] || null;
25
24
  }
@@ -1,4 +1,7 @@
1
- import htmlSpec, { Attribute } from '@markuplint/html-spec';
1
+ import type { Attribute } from '@markuplint/html-spec';
2
+
3
+ import htmlSpec from '@markuplint/html-spec';
4
+
2
5
  import { getSpec } from './get-spec';
3
6
 
4
7
  describe('getSpec', () => {
package/src/get-spec.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { ElementSpec, ExtendedSpec, MLMLSpec } from '@markuplint/ml-spec';
1
+ import type { ElementSpec, ExtendedSpec, MLMLSpec } from './types';
2
+
2
3
  import { mergeArray } from './utils';
3
4
 
4
5
  /**
@@ -19,8 +20,11 @@ export function getSpec(schemas: readonly [MLMLSpec, ...ExtendedSpec[]]) {
19
20
  if (extendedSpec.def['#ariaAttrs']) {
20
21
  result.def['#ariaAttrs'] = [...result.def['#ariaAttrs'], ...extendedSpec.def['#ariaAttrs']];
21
22
  }
22
- if (extendedSpec.def['#globalAttrs']) {
23
- result.def['#globalAttrs'] = [...result.def['#globalAttrs'], ...extendedSpec.def['#globalAttrs']];
23
+ if (extendedSpec.def['#globalAttrs']?.['#extends']) {
24
+ result.def['#globalAttrs']['#HTMLGlobalAttrs'] = [
25
+ ...(result.def['#globalAttrs']?.['#HTMLGlobalAttrs'] || []),
26
+ ...(extendedSpec.def['#globalAttrs']?.['#extends'] || []),
27
+ ];
24
28
  }
25
29
  if (extendedSpec.def['#roles']) {
26
30
  result.def['#roles'] = [...result.def['#roles'], ...extendedSpec.def['#roles']];
package/src/index.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export * from './permitted-structres';
2
+ export * from './attributes';
2
3
  export * from './get-spec-by-tag-name';
3
4
  export * from './get-spec';
5
+ export * from './get-ns';
4
6
  export * from './types';
@@ -24,7 +24,27 @@ export type ContentModel =
24
24
  | '#transparent'
25
25
  | '#embedded'
26
26
  | '#palpable'
27
- | '#script-supporting';
27
+ | '#script-supporting'
28
+ | '#SVGAnimation'
29
+ | '#SVGBasicShapes'
30
+ | '#SVGContainer'
31
+ | '#SVGDescriptive'
32
+ | '#SVGFilterPrimitive'
33
+ | '#SVGFont'
34
+ | '#SVGGradient'
35
+ | '#SVGGraphics'
36
+ | '#SVGGraphicsReferencing'
37
+ | '#SVGLightSource'
38
+ | '#SVGNeverRendered'
39
+ | '#SVGNone'
40
+ | '#SVGPaintServer'
41
+ | '#SVGRenderable'
42
+ | '#SVGShape'
43
+ | '#SVGStructural'
44
+ | '#SVGStructurallyExternal'
45
+ | '#SVGTextContent'
46
+ | '#SVGTextContentChild'
47
+ | '#SVGOtherXMLNamespace';
28
48
  export type PermittedContentSpec = PermittedContent[];
29
49
 
30
50
  export interface PermittedStructuresSchema {
package/src/types.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { ContentModel, PermittedStructuresSchema } from './permitted-structres';
1
+ import type { AttributeCondition, AttributeType } from './attributes';
2
+ import type { ContentModel, PermittedStructuresSchema } from './permitted-structres';
2
3
 
3
4
  /**
4
5
  * markuplit Markup-language spec
@@ -23,9 +24,13 @@ export type ExtendedSpec = {
23
24
  export type Cites = string[];
24
25
 
25
26
  export type SpecDefs = {
26
- '#globalAttrs': Attribute[];
27
- '#roles': ARIRRoleAttribute[];
27
+ '#globalAttrs': Partial<{
28
+ '#extends': Attribute[];
29
+ '#HTMLGlobalAttrs': Attribute[];
30
+ [OtherGlobalAttrs: string]: Attribute[];
31
+ }>;
28
32
  '#ariaAttrs': ARIAAttribute[];
33
+ '#roles': ARIRRoleAttribute[];
29
34
  '#contentModels': { [model in ContentModel]?: string[] };
30
35
  };
31
36
 
@@ -38,6 +43,12 @@ export type ElementSpec = {
38
43
  */
39
44
  name: string;
40
45
 
46
+ /**
47
+ * Namespaces in XML
48
+ * @see https://www.w3.org/TR/xml-names/
49
+ */
50
+ namespace?: 'http://www.w3.org/1999/xhtml' | 'http://www.w3.org/2000/svg' | 'http://www.w3.org/1998/Math/MathML';
51
+
41
52
  /**
42
53
  * Reference URL
43
54
  */
@@ -141,64 +152,19 @@ type ElementCondition = {
141
152
 
142
153
  export type Attribute = {
143
154
  name: string;
144
- type: AttributeType;
155
+ type: AttributeType | [AttributeType, ...AttributeType[]];
145
156
  description: string;
146
157
  caseSensitive?: true;
147
158
  experimental?: true;
148
159
  obsolete?: true;
149
- deprecated?: true;
160
+ deprecated?: boolean;
150
161
  nonStandard?: true;
151
- required?: true | AttributeCondition;
162
+ required?: boolean | AttributeCondition;
152
163
  requiredEither?: string[];
153
- enum?: string[];
154
164
  noUse?: boolean;
155
165
  condition?: AttributeCondition;
156
166
  };
157
167
 
158
- export type AttributeCondition = {
159
- ancestor?: string;
160
- self?: string | string[];
161
- };
162
-
163
- // type AttributeCtegory = 'global' | 'xml' | 'aria' | 'eventhandler' | 'form' | 'particular';
164
-
165
- export type AttributeType =
166
- | 'String'
167
- | 'NonEmptyString'
168
- | 'Boolean'
169
- | 'Function' // JavaScript function body
170
- | 'Date'
171
- | 'Int' // Integer
172
- | 'Uint' // Non-negative integer
173
- | 'Float' // Floating-point number
174
- | 'NonZeroUint' // Non-negative integer greater than zero
175
- | 'AcceptList' // https://html.spec.whatwg.org/multipage/input.html#attr-input-accept
176
- | 'AutoComplete' // https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-detail-tokens
177
- | 'BCP47' // https://tools.ietf.org/html/bcp47
178
- | 'Color' // https://drafts.csswg.org/css-color/#typedef-color
179
- | 'ColSpan' // https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-colspan
180
- | 'Coords' // https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-coords
181
- | 'DateTime' // https://html.spec.whatwg.org/multipage/text-level-semantics.html#datetime-value
182
- | 'Destination' // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-as
183
- | 'DOMID'
184
- | 'DOMIDList'
185
- | 'ItemType' // https://html.spec.whatwg.org/multipage/microdata.html#attr-itemtype
186
- | 'LinkSizes' // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes
187
- | 'LinkType' // https://html.spec.whatwg.org/multipage/links.html#linkTypes
188
- | 'LinkTypeList' // https://html.spec.whatwg.org/multipage/links.html#linkTypes
189
- | 'MediaQuery' // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-media-query-list
190
- | 'MediaQueryList' // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-media-query-list
191
- | 'MIMEType' // https://mimesniff.spec.whatwg.org/#valid-mime-type
192
- | 'ReferrerPolicy' // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#referrer-policy-attributes
193
- | 'RowSpan' // https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-rowspan
194
- | 'SourceSizeList' // https://html.spec.whatwg.org/multipage/images.html#sizes-attributes
195
- | 'SrcSet' // https://html.spec.whatwg.org/multipage/images.html#srcset-attribute
196
- | 'TabIndex' // https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex
197
- | 'Target' // https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-target
198
- | 'URL' // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces
199
- | 'URLHash' // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-hash-name-reference
200
- | 'URLList'; // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces
201
-
202
168
  export type ARIRRoleAttribute = {
203
169
  name: string;
204
170
  description: string;
@@ -1,8 +1,3 @@
1
1
  {
2
- "extends": "../../../tsconfig.json",
3
- "compilerOptions": {
4
- "composite": true
5
- },
6
- "include": ["./src/**/*"],
7
- "exclude": ["node_modules"]
2
+ "extends": "../../../tsconfig.json"
8
3
  }
@@ -1 +1 @@
1
- {"program":{"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.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.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.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.es2020.bigint.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.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.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/permitted-structres.ts","./src/types.ts","./src/get-spec-by-tag-name.ts","./src/index.ts","./src/utils.ts","./src/get-spec.ts","../../../node_modules/@types/anymatch/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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/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.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/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/string_decoder.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/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/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/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/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/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/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/mdast/index.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/webpack/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/webpack/node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","0c0ce91576347a55f28e1db2066dd580e61cd5271bc271c2039c79ee60fa41ac","106e1a7e6d824d43826e3f2690eee63777445e8792c30fabe2d39cc6eedd883c","e7cba84dedb81c392364dd2aaea72a59096ca38b512b0c1b031a1e422062e747","ebdbaf5fd98b3bdb94832ba3435a66e4948ee02ef18e68874dbe8a86fab4ac0a","63174e9fefb5efb6a78b196515b66939c2687185b8e1472024ffa862959ba5d5","deb9690e34fe2f0c74887e08e8ae153400c227c8624ef56ab6aa165bae3c8160","48b52264fa193879a074197839dbb4796fa07e86350ff888e5361e06aa46df76","4606c6d854002b409744140a996a49c4a607c1eb0396855529836161892abef5","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","3e6297bcddf37e373d40ddb4c2b9e6fc98901b2a44c01b2d96af142874973c43","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"5402314c88d0127f63f94a0272f79e04ea0fc010ff6da6613807504c4163a1ad","affectsGlobalScope":true},"c9e8a340da877b05a52525554aa255b3f44958c7f6748ebf5cbe0bfbe6766878","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","a668dfae917097b30fc29bbebeeb869cee22529f2aa9976cea03c7e834a1b841","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","51a77d65fbadc93dcdf454ea1d94bd9f1f146008d890bea4f168dd397192b9fb","797a9d37eb1f76143311c3f0a186ce5c0d8735e94c0ca08ff8712a876c9b4f9e","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"36ba0e764ace4fb55e6165c5f33f2826f88b1d3767f7ec658fe2f6c85ac5e776","affectsGlobalScope":true},"d3315298050252531e7db9046296ca2162fa5218a85b10a62ed79140e3822e3c","bdaf554ae2d9d09e2a42f58a29ef7f80e5b5c1d7b96bfb717243dc91a477216e","bd311ff12ac011f5531edd217189606e7a697376d6109e8a18361358f6249b46","a870e564e578dccc7b34018d6919f9466bae462b4bafc3449ca63a2331ac27c5","13257840c0850d4ebd7c2b17604a9e006f752de76c2400ebc752bc465c330452","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","1eaf8fecdae37cc4c85f496d2bdb9e8d46c21b3643b7e27d3646a330585515a5","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","21e64a125f65dff99cc3ed366c96e922b90daed343eb52ecdace5f220401dcda","4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",{"version":"61977e8f4c042abd392645828c90afd1b551a6fd32c51b93717c68003ce7c983","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","3b790d08129aca55fd5ae1672d1d26594147ac0d5f2eedc30c7575eb18daef7e","64535caf208a02420d2d04eb2029269efedd11eb8597ada0d5e6f3d54ec663ae","3b02b1e3c3a6730d79e2c8652f3be6a7caef1a604b9c5103abbbcea921694be1","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","f49709e8c096b05aca0674d39f471aa05261de7c756df9abdf4a53ed0fa98901","baca27d1de400e027cdc70217ca73e414002baef5798aa24a921097c20066fa1","f89a6d56f0267f6e73c707f8a89d2f38e9928e10bfa505f39a4f4bf954093aee","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","e649840284bab8c4d09cadc125cd7fbde7529690cc1a0881872b6a9cd202819b","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","1aa7dbace2b7b2ef60897dcd4f66252ee6ba85e594ded8918c9acdcecda1896c","1535aeef6e803bc8c784b14c99bd214dba9223df4914f3dee616af351ab46042","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3","210ef68f34baca2a4499c07a51f05d51b4f0ef01d64efea3017cb3bc31c37e33","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","6c9c7e459e013ddf52c70b90f88bbdd925e483ef984d80f9bffb501029974e82","81c14b89fa607b86dd726e2e3e91360cf8155ce97468404324d404a5bd65b2eb","ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b","98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",{"version":"e41a1ce538d71d5a3389b7fc2e39c15a4972f0d4cb14bf2fe8cda8c361150028","affectsGlobalScope":true},"a9ef188a807dfa67e80eb100aeac1036f61d01f64d8b51ce68e78ee40cdef415",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320","7f4366cd82a5391c7a1a196908c624c9415f731a57400ea1c3661041cab398a8","274bda283ef15f4205603ca9967313fc013aa77ae89f2cbeab5fbd51439e96ed","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","3b02517f9be71f255eadab9892406055d069167891f1e1ea16c96c4ff1ddda01","3b05c396564e51753e921e1cc4aae1cf7cd9be53c891cf2e81fa29f11c0bd373","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","6767cce098e1e6369c26258b7a1f9e569c5467d501a47a090136d5ea6e80ae6d","62245a56a6df2b5fbe569bee7d8a95e662477e38317262070dd3e82eaa8eecb6","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"881ea8e225320dd9b436999d82998e1d7699e512e0597f0015e5abd59d95974a","affectsGlobalScope":true},"ac7c35cc5643ab7f4e2884aa0a383d8ac5cd3e995cc7f12349395192a4361c73","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","327f42ab31ff4539ba868d0374f8825af328b104b5f78d26b2e3ce9cc17b43a0","62a05210201c793349ec28254f06a01814c5b4f5591f6d1921941286db78ea2a","8f877178233f74095130e129ce86128a6a15afcfc6171d714e154863b6a65fe8","b395ec0779c66de885f97974534e95ee2c8bbf9acaf5857a6782ddc32972b6d8","938cfe3df10c48b87ce33e1e9cbc7ead3fa3889816896cfefa382efa2021503a","d7e12d9634587982b53654f1c9a96e1f9a911fbd5e69fc5c593565c691fd4a12","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","554c9868b4f1bfb9109585c3a3ea56218d74156b18849bf97978405abf682f01","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","e5c0472e87e18dfe9d2d2d2c3be9f4a5fbec27a74e37bd0e7dd8ab304ea66689","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},{"version":"2f1fdc948954bec1253759db6b57952133e38ebb33c990c8d2c81d8ee0b8eea7","affectsGlobalScope":true},"b1071c8eeb8da55bfac2666551ac923320b0c8a76a292ff55de0190ea59e691c","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","4045f108d41deca56fa341093feeb16252ccf1fc4d5233bd54dbba022b976477","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bee79f5862fe1278d2ba275298862bce3f7abf1e59d9c669c4b9a4b2bba96956","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","8ef5aad624890acfe0fa48230edce255f00934016d16acb8de0edac0ea5b21bb","9af6248ff4baf0c1ddc62bb0bc43197437bd5fb2c95ff8e10e4cf2e699ea45c1","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","89b42f8ee5d387a39db85ee2c7123a391c3ede266a2bcd502c85ad55626c3b2b","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":4},"fileIdsList":[[53],[53,54,55,56,57],[53,55],[75,108,109],[108],[112,113,114,115,116,117,118,119,120,121,122,123],[72,108],[97,108,128],[75,108],[133,134],[130,131,132,133],[134],[72,75,108,126,127],[110,127,128,137],[72,108,139],[73,108],[142],[72,75,77,80,89,97,108],[146],[147],[153,155],[149,150],[149,150,151,152],[154],[158,160,161,162,163,164,165,166,167,168,169,170],[158,159,161,162,163,164,165,166,167,168,169,170],[159,160,161,162,163,164,165,166,167,168,169,170],[158,159,160,162,163,164,165,166,167,168,169,170],[158,159,160,161,163,164,165,166,167,168,169,170],[158,159,160,161,162,164,165,166,167,168,169,170],[158,159,160,161,162,163,165,166,167,168,169,170],[158,159,160,161,162,163,164,166,167,168,169,170],[158,159,160,161,162,163,164,165,167,168,169,170],[158,159,160,161,162,163,164,165,166,168,169,170],[158,159,160,161,162,163,164,165,166,167,169,170],[158,159,160,161,162,163,164,165,166,167,168,170],[158,159,160,161,162,163,164,165,166,167,168,169],[176],[172,173,174,175],[184],[75,97,108,187,188],[106],[105,106],[72,73,80,89],[63,72,80],[98],[67,73,81],[89],[69,72,80],[70],[69],[72],[72,74,89,97],[73],[80,89,97],[72,73,75,80,89,94,97],[75,94,97],[107],[97],[69,72,89],[61],[96],[87,98,100],[72,90],[92],[80],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],[86],[72,74,89,97,100],[192],[193],[173,174,175,197],[75,108,136],[205],[75,77,129,137,138,183,184],[108,210,211,212,213,214,215,216,217,218,219,220],[209,210,219],[210,219],[202,209,210,219],[209,210,211,212,213,214,215,216,217,218,220],[210],[67,209,219],[108,183],[179,180],[132,178,179],[132,178,180],[133,180,181,182],[222],[75,89,108],[45,47],[45,49,50],[45,46,47,48,51],[45],[45,46]],"referencedMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[110,4],[111,5],[124,6],[125,7],[129,8],[109,9],[135,10],[134,11],[131,12],[128,13],[138,14],[140,15],[141,16],[143,17],[145,18],[147,19],[148,20],[156,21],[151,22],[153,23],[152,22],[155,24],[159,25],[160,26],[158,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,33],[167,34],[168,35],[169,36],[170,37],[171,17],[177,38],[176,39],[185,40],[189,41],[59,42],[107,43],[63,44],[64,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,51],[71,52],[72,52],[73,53],[74,54],[75,55],[76,56],[77,57],[108,58],[78,52],[79,59],[80,60],[83,61],[84,62],[87,52],[88,63],[89,64],[90,48],[93,65],[94,66],[105,67],[96,66],[97,68],[99,48],[101,69],[102,48],[193,70],[192,71],[198,72],[199,5],[201,40],[137,73],[206,74],[208,75],[221,76],[220,77],[211,78],[212,79],[219,80],[213,79],[214,78],[215,78],[216,78],[217,81],[210,82],[218,77],[184,83],[181,84],[180,85],[179,86],[183,87],[223,88],[187,89],[48,90],[51,91],[49,92],[46,93],[47,94],[50,93]],"exportedModulesMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[110,4],[111,5],[124,6],[125,7],[129,8],[109,9],[135,10],[134,11],[131,12],[128,13],[138,14],[140,15],[141,16],[143,17],[145,18],[147,19],[148,20],[156,21],[151,22],[153,23],[152,22],[155,24],[159,25],[160,26],[158,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,33],[167,34],[168,35],[169,36],[170,37],[171,17],[177,38],[176,39],[185,40],[189,41],[59,42],[107,43],[63,44],[64,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,51],[71,52],[72,52],[73,53],[74,54],[75,55],[76,56],[77,57],[108,58],[78,52],[79,59],[80,60],[83,61],[84,62],[87,52],[88,63],[89,64],[90,48],[93,65],[94,66],[105,67],[96,66],[97,68],[99,48],[101,69],[102,48],[193,70],[192,71],[198,72],[199,5],[201,40],[137,73],[206,74],[208,75],[221,76],[220,77],[211,78],[212,79],[219,80],[213,79],[214,78],[215,78],[216,78],[217,81],[210,82],[218,77],[184,83],[181,84],[180,85],[179,86],[183,87],[223,88],[187,89],[48,90],[51,91],[49,92],[46,93],[47,94],[50,93]],"semanticDiagnosticsPerFile":[55,53,52,58,54,56,57,110,111,112,113,114,115,116,118,124,117,122,119,120,121,123,125,129,109,135,130,134,131,133,128,138,140,141,143,144,145,146,147,148,156,149,151,153,152,150,155,154,132,157,159,160,158,161,162,163,164,165,166,167,168,169,170,171,177,172,176,136,185,139,186,188,189,106,59,61,107,62,63,64,65,66,67,68,69,70,71,72,73,74,60,103,75,76,77,108,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,105,96,97,98,99,100,104,101,102,190,191,193,192,194,174,195,196,127,126,197,198,199,200,175,201,137,202,203,204,206,142,207,208,221,220,211,212,219,213,214,215,216,217,210,218,209,184,181,180,179,182,183,222,223,178,173,187,205,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,48,51,49,46,47,50]},"version":"4.3.5"}
1
+ {"program":{"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.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.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.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.es2020.bigint.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.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.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/attributes.ts","./src/get-ns.ts","./src/permitted-structres.ts","./src/types.ts","./src/get-spec-by-tag-name.ts","./src/utils.ts","./src/get-spec.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.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.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/repl.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/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/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/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/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/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/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/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/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/webpack/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/webpack/node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","ae17536934bf38f9d65d67e0f735266f8d37ea16bbdce9b22c3733f689a31335","87139192fe914af0c6b64be39f686da15477d454155a0cfd46cea1fcf3b50cdf","44f1c1aca7296b8488666addd466785811375699edf7c8f1334d323220e9fd34","5ca8e5f2e36fb020c03e30b681548a7e07101a26e5553f61e8753417568ced94","9755805ad2fa51d91d47c775adb56a9f577dcc2784a27dd0a79e6c9f0c5b9219","63174e9fefb5efb6a78b196515b66939c2687185b8e1472024ffa862959ba5d5","f5d495897f69a89724364d7bb2fdf2505868f41bb2f94f7b4e70f53d30dcd3f7","afc4e3a21776ee2842568ca4a5d41351631f81c26b4f1e86b8b8e8f37662d1bc","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d168ca1638b27c95909b68805c84b8018dba87630bb1e4cc99be4ccdf119f39d","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e4be0ff844c90e9112c7cde181f9f76c72272b7b137485f6fa7d1c66a2cc84bd","affectsGlobalScope":true},"1a4f6207fac7bf7e94957a5c7cac0c33d07499bab60a197dabea4f452a544cd8","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","71b4b77aaa2abca926f7195cca82367ca384f40e126201cf07a22b5efd5617e5","d7e12d9634587982b53654f1c9a96e1f9a911fbd5e69fc5c593565c691fd4a12","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","7a514f06ed8263440e9b50047f2532b9188c9c68422b4607f9d23affaebb3e63","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","630ca25a5f50f64b0eacc40ba4c95f4469ec9dedb76ce522ee34806cbac63883","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","4045f108d41deca56fa341093feeb16252ccf1fc4d5233bd54dbba022b976477","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[54,103],[103],[54,55,56,57,58,103],[54,56,103],[78,103,110,111],[103,110],[103,114,115,116,117,118,119,120,121,122,123,124,125],[75,103,110],[102,103,110,130],[78,103,110],[103,132],[103,137,138],[103,134,135,136,137],[103,138],[75,78,103,110,128,129],[103,112,129,130,141],[75,76,103,110,143],[76,103,110],[103,146],[75,78,80,83,92,102,103,110],[103,150],[103,151],[103,157,159],[103,162,164,165,166,167,168,169,170,171,172,173,174],[103,162,163,165,166,167,168,169,170,171,172,173,174],[103,163,164,165,166,167,168,169,170,171,172,173,174],[103,162,163,164,166,167,168,169,170,171,172,173,174],[103,162,163,164,165,167,168,169,170,171,172,173,174],[103,162,163,164,165,166,168,169,170,171,172,173,174],[103,162,163,164,165,166,167,169,170,171,172,173,174],[103,162,163,164,165,166,167,168,170,171,172,173,174],[103,162,163,164,165,166,167,168,169,171,172,173,174],[103,162,163,164,165,166,167,168,169,170,172,173,174],[103,162,163,164,165,166,167,168,169,170,171,173,174],[103,162,163,164,165,166,167,168,169,170,171,172,174],[103,162,163,164,165,166,167,168,169,170,171,172,173],[103,180],[103,188],[78,102,103,110,192,193],[60,103],[63,103],[64,69,103],[65,75,76,83,92,102,103],[65,66,75,83,103],[67,103],[68,69,76,84,103],[69,92,99,103],[70,72,75,83,103],[71,103],[72,73,103],[74,75,103],[75,103],[75,76,77,92,102,103],[75,76,77,92,103],[78,83,92,102,103],[75,76,78,79,83,92,99,102,103],[78,80,92,99,102,103],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109],[75,81,103],[82,102,103],[72,75,83,92,103],[84,103],[85,103],[63,86,103],[87,101,103,107],[88,103],[89,103],[75,90,103],[90,91,103,105],[75,92,93,94,103],[92,94,103],[92,93,103],[95,103],[96,103],[75,97,98,103],[97,98,103],[69,83,99,103],[100,103],[83,101,103],[64,78,89,102,103],[69,103],[92,103,104],[103,105],[103,106],[64,69,75,77,86,92,102,103,105,107],[92,103,108],[103,197],[103,198],[103,176,177,178,179],[102,103,110],[78,103,110,140],[103,208],[78,80,103,131,141,142,187,188],[103,110,213,214,215,216,217,218,219,220,221,222,223],[103,212,213,222],[103,213,222],[103,205,212,213,222],[103,212,213,214,215,216,217,218,219,220,221,223],[103,213],[69,103,212,222],[103,110,187],[103,184],[103,136,182,183],[103,136,184],[78,83,99,103,137,182,184,185,186],[103,225],[78,92,103,110],[103,153,154],[103,153,154,155,156],[103,158],[45,103],[45,49,103],[45,49,51,103],[45,46,47,48,49,50,52,103],[45,46,48,103]],"referencedMap":[[56,1],[54,2],[59,3],[55,1],[57,4],[58,1],[112,5],[113,6],[114,2],[115,2],[116,2],[117,2],[118,2],[120,2],[126,7],[119,2],[124,2],[121,2],[122,2],[123,2],[125,2],[127,8],[131,9],[111,10],[133,11],[139,12],[134,2],[138,13],[135,14],[137,2],[130,15],[142,16],[144,17],[145,18],[147,19],[148,2],[149,20],[150,2],[151,21],[152,22],[160,23],[136,2],[161,2],[163,24],[164,25],[162,26],[165,27],[166,28],[167,29],[168,30],[169,31],[170,32],[171,33],[172,34],[173,35],[174,36],[175,19],[181,37],[140,2],[189,38],[143,2],[190,2],[132,2],[191,2],[193,2],[194,39],[60,40],[61,40],[63,41],[64,42],[65,43],[66,44],[67,45],[68,46],[69,47],[70,48],[71,49],[72,50],[73,50],[74,51],[75,52],[76,53],[77,54],[62,2],[109,2],[78,55],[79,56],[80,57],[110,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[91,69],[92,70],[94,71],[93,72],[95,73],[96,74],[97,75],[98,76],[99,77],[100,78],[101,79],[102,80],[103,81],[104,82],[105,83],[106,84],[107,85],[108,86],[195,2],[196,2],[198,87],[197,88],[199,2],[178,2],[200,2],[201,2],[129,2],[128,2],[176,2],[180,89],[202,90],[203,2],[179,2],[204,38],[141,91],[205,2],[206,2],[207,2],[209,92],[146,2],[210,2],[211,93],[224,94],[223,95],[214,96],[215,97],[222,98],[216,97],[217,96],[218,96],[219,96],[220,99],[213,100],[221,95],[212,2],[188,101],[185,102],[184,103],[182,104],[186,2],[187,105],[225,2],[226,106],[183,2],[177,2],[192,107],[153,2],[155,108],[157,109],[156,108],[154,2],[159,110],[158,2],[208,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[46,111],[47,111],[50,112],[52,113],[53,114],[48,111],[49,115],[51,111]],"exportedModulesMap":[[56,1],[54,2],[59,3],[55,1],[57,4],[58,1],[112,5],[113,6],[114,2],[115,2],[116,2],[117,2],[118,2],[120,2],[126,7],[119,2],[124,2],[121,2],[122,2],[123,2],[125,2],[127,8],[131,9],[111,10],[133,11],[139,12],[134,2],[138,13],[135,14],[137,2],[130,15],[142,16],[144,17],[145,18],[147,19],[148,2],[149,20],[150,2],[151,21],[152,22],[160,23],[136,2],[161,2],[163,24],[164,25],[162,26],[165,27],[166,28],[167,29],[168,30],[169,31],[170,32],[171,33],[172,34],[173,35],[174,36],[175,19],[181,37],[140,2],[189,38],[143,2],[190,2],[132,2],[191,2],[193,2],[194,39],[60,40],[61,40],[63,41],[64,42],[65,43],[66,44],[67,45],[68,46],[69,47],[70,48],[71,49],[72,50],[73,50],[74,51],[75,52],[76,53],[77,54],[62,2],[109,2],[78,55],[79,56],[80,57],[110,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[91,69],[92,70],[94,71],[93,72],[95,73],[96,74],[97,75],[98,76],[99,77],[100,78],[101,79],[102,80],[103,81],[104,82],[105,83],[106,84],[107,85],[108,86],[195,2],[196,2],[198,87],[197,88],[199,2],[178,2],[200,2],[201,2],[129,2],[128,2],[176,2],[180,89],[202,90],[203,2],[179,2],[204,38],[141,91],[205,2],[206,2],[207,2],[209,92],[146,2],[210,2],[211,93],[224,94],[223,95],[214,96],[215,97],[222,98],[216,97],[217,96],[218,96],[219,96],[220,99],[213,100],[221,95],[212,2],[188,101],[185,102],[184,103],[182,104],[186,2],[187,105],[225,2],[226,106],[183,2],[177,2],[192,107],[153,2],[155,108],[157,109],[156,108],[154,2],[159,110],[158,2],[208,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[46,111],[47,111],[50,112],[52,113],[53,114],[48,111],[49,115],[51,111]],"semanticDiagnosticsPerFile":[56,54,59,55,57,58,112,113,114,115,116,117,118,120,126,119,124,121,122,123,125,127,131,111,133,139,134,138,135,137,130,142,144,145,147,148,149,150,151,152,160,136,161,163,164,162,165,166,167,168,169,170,171,172,173,174,175,181,140,189,143,190,132,191,193,194,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,62,109,78,79,80,110,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,195,196,198,197,199,178,200,201,129,128,176,180,202,203,179,204,141,205,206,207,209,146,210,211,224,223,214,215,222,216,217,218,219,220,213,221,212,188,185,184,182,186,187,225,226,183,177,192,153,155,157,156,154,159,158,208,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,46,47,50,52,53,48,49,51]},"version":"4.4.4"}