xo 0.46.2 → 0.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/plugins.cjs +2 -7
- package/index.js +12 -11
- package/lib/options-manager.js +108 -86
- package/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/node_modules/@types/json-schema/LICENSE +21 -0
- package/node_modules/@types/json-schema/README.md +16 -0
- package/node_modules/@types/json-schema/index.d.ts +751 -0
- package/node_modules/@types/json-schema/package.json +45 -0
- package/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/README.md +239 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +167 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +32 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-requiring-type-checking.js +27 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-requiring-type-checking.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js +37 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +154 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +232 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +58 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +146 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +74 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js +191 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +92 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +110 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +176 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +143 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +127 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +153 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +119 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +262 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +571 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +121 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +160 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +215 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +380 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js +164 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js +55 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js +221 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js +49 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js +1140 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +406 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +250 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +41 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +59 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +73 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +242 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +547 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +194 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +94 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +91 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +90 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +259 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +18 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +371 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +430 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +71 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +161 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +97 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +272 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +65 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js +118 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +90 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +146 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +105 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +188 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +55 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +200 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +59 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +128 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +209 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +57 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js +98 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +161 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +196 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +82 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +183 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +191 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +56 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +204 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +93 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +102 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +236 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +80 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +94 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +146 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +126 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-parameter-properties.js +105 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-parameter-properties.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +219 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +60 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +157 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +369 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +82 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +125 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +261 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +232 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +474 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +148 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +118 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +242 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +89 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +225 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +282 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +82 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +122 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +155 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +74 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +501 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +294 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +86 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +66 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +120 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +216 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js +647 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +88 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +178 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +207 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +207 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +72 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +160 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +319 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +93 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +260 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +96 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +150 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +137 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +489 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +80 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +177 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +80 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +201 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +158 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +115 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +250 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +83 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js +227 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js +157 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +143 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +715 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +144 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +125 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js +237 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +196 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +281 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +395 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +565 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +232 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +41 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +55 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +26 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +140 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +32 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +27 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js.map +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/README.md +159 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/TEMPLATE.md +57 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +112 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +130 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +58 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +150 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +41 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +194 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/camelcase.md +8 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +46 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +90 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +124 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +92 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +87 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +72 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +70 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +95 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +298 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +356 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +293 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +38 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +216 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +1101 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +112 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +708 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +57 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +97 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +56 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +159 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-imports.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +59 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +100 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +76 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +191 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +66 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +92 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +69 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implicit-any-catch.md +88 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +121 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +160 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +38 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +138 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +31 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +131 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +62 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +58 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +190 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +143 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +61 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +73 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +60 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +407 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +92 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +46 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +76 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +99 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +68 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +124 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +604 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +158 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +120 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +91 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +65 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +80 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +96 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +99 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +73 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +79 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +120 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +43 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +54 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +39 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +62 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +55 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +82 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +53 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +93 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +85 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +104 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +43 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +149 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +94 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +285 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +97 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +66 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +63 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +104 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +66 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +77 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +78 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +105 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +44 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +112 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +228 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +38 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-union-intersection-members.md +159 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +34 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-infix-ops.md +38 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +205 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +117 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +319 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +348 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +126 -0
- package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +43 -0
- package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +412 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.d.ts +61 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +603 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +498 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +71 -0
- package/node_modules/@typescript-eslint/eslint-plugin/package.json +83 -0
- package/node_modules/@typescript-eslint/parser/LICENSE +22 -0
- package/node_modules/@typescript-eslint/parser/README.md +290 -0
- package/node_modules/@typescript-eslint/parser/dist/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/parser/dist/index.js +13 -0
- package/node_modules/@typescript-eslint/parser/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +17 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.js +133 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -0
- package/node_modules/@typescript-eslint/parser/package.json +74 -0
- package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
- package/node_modules/@typescript-eslint/scope-manager/README.md +120 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +72 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +189 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +62 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +58 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.js +27 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +62 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1238 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +20 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +21 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +113 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +71 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +144 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +23 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +424 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +314 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +84 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +28 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +111 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +109 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +83 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +531 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +222 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +82 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +37 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +21 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +106 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +367 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +25 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +32 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
- package/node_modules/@typescript-eslint/scope-manager/package.json +68 -0
- package/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
- package/node_modules/@typescript-eslint/type-utils/README.md +15 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +8 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +51 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +6 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +13 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +8 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +66 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +6 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +17 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +6 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +34 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts +3 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js +47 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts +3 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js +13 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +8 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +70 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +15 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.js +27 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +20 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +205 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +17 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +71 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +45 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.js +145 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +4 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +23 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +4 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +39 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +11 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +48 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js.map +1 -0
- package/node_modules/@typescript-eslint/type-utils/package.json +70 -0
- package/node_modules/@typescript-eslint/types/LICENSE +21 -0
- package/node_modules/@typescript-eslint/types/README.md +17 -0
- package/node_modules/@typescript-eslint/types/dist/ast-spec.d.ts +1384 -0
- package/node_modules/@typescript-eslint/types/dist/ast-spec.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/ast-spec.js +198 -0
- package/node_modules/@typescript-eslint/types/dist/ast-spec.js.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/types/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/index.js +21 -0
- package/node_modules/@typescript-eslint/types/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/lib.d.ts +3 -0
- package/node_modules/@typescript-eslint/types/dist/lib.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/lib.js +6 -0
- package/node_modules/@typescript-eslint/types/dist/lib.js.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +35 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.js +3 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.js.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +8 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.js +24 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.js.map +1 -0
- package/node_modules/@typescript-eslint/types/package.json +56 -0
- package/node_modules/@typescript-eslint/typescript-estree/LICENSE +26 -0
- package/node_modules/@typescript-eslint/typescript-estree/README.md +383 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +59 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +157 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2299 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js +62 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +78 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +61 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +36 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts +19 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js +410 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +23 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +127 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +89 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +32 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +259 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +224 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +559 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +188 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +25 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +522 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +93 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +54 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +174 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +21 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +18 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +42 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/gitignore.js +120 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.d.ts +186 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.js +181 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/license +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/package.json +82 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/readme.md +170 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/stream-utils.js +46 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/README.md +412 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/index.d.ts +61 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/index.js +603 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/legacy.js +498 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/package.json +71 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/index.d.ts +25 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/index.js +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/license +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/package.json +35 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/readme.md +44 -0
- package/node_modules/@typescript-eslint/typescript-estree/package.json +86 -0
- package/node_modules/@typescript-eslint/utils/LICENSE +21 -0
- package/node_modules/@typescript-eslint/utils/README.md +27 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +48 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +32 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +76 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +36 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +76 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +95 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +18 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +32 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +68 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +18 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +40 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +18 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +20 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +16 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +8 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +13 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +180 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +125 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +11 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +35 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +47 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.d.ts +18 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.js +127 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +10 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +32 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.d.ts +24 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.js +26 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +17 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +48 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +8 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +28 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +9 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +21 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +14 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +28 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/index.d.ts +8 -0
- package/node_modules/@typescript-eslint/utils/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/index.js +37 -0
- package/node_modules/@typescript-eslint/utils/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +2 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.js +6 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +9 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +4 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts +137 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js +17 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +338 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +23 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +323 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +14 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +389 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +152 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +8 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +44 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +31 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +343 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +9 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +22 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.d.ts +19 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.js +9 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.d.ts +15 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.d.ts +25 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.js +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.d.ts +28 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.js +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.d.ts +55 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.js +11 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.d.ts +103 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.js +28 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.d.ts +50 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.js +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.d.ts +17 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.js +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.d.ts +16 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.js +7 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/index.d.ts +11 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/index.js +25 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/index.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.js +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.js.map +1 -0
- package/node_modules/@typescript-eslint/utils/package.json +67 -0
- package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
- package/node_modules/@typescript-eslint/visitor-keys/README.md +13 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +6 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +155 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
- package/node_modules/@typescript-eslint/visitor-keys/package.json +59 -0
- package/node_modules/array-union/index.d.ts +25 -0
- package/node_modules/array-union/index.js +5 -0
- package/node_modules/array-union/license +9 -0
- package/node_modules/array-union/package.json +38 -0
- package/node_modules/array-union/readme.md +34 -0
- package/node_modules/braces/CHANGELOG.md +184 -0
- package/node_modules/braces/LICENSE +21 -0
- package/node_modules/braces/README.md +593 -0
- package/node_modules/braces/index.js +170 -0
- package/node_modules/braces/lib/compile.js +57 -0
- package/node_modules/braces/lib/constants.js +57 -0
- package/node_modules/braces/lib/expand.js +113 -0
- package/node_modules/braces/lib/parse.js +333 -0
- package/node_modules/braces/lib/stringify.js +32 -0
- package/node_modules/braces/lib/utils.js +112 -0
- package/node_modules/braces/package.json +77 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +478 -0
- package/node_modules/debug/node_modules/ms/index.js +162 -0
- package/node_modules/debug/node_modules/ms/license.md +21 -0
- package/node_modules/debug/node_modules/ms/package.json +37 -0
- package/node_modules/debug/node_modules/ms/readme.md +60 -0
- package/node_modules/debug/package.json +59 -0
- package/node_modules/debug/src/browser.js +269 -0
- package/node_modules/debug/src/common.js +274 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/dir-glob/index.js +75 -0
- package/node_modules/dir-glob/license +9 -0
- package/node_modules/dir-glob/package.json +38 -0
- package/node_modules/dir-glob/readme.md +76 -0
- package/node_modules/eslint-config-xo-typescript/index.js +694 -0
- package/node_modules/eslint-config-xo-typescript/license +9 -0
- package/node_modules/eslint-config-xo-typescript/package.json +58 -0
- package/node_modules/eslint-config-xo-typescript/readme.md +67 -0
- package/node_modules/eslint-config-xo-typescript/space.js +15 -0
- package/node_modules/eslint-scope/CHANGELOG.md +70 -0
- package/node_modules/eslint-scope/LICENSE +22 -0
- package/node_modules/eslint-scope/README.md +54 -0
- package/node_modules/eslint-scope/lib/definition.js +86 -0
- package/node_modules/eslint-scope/lib/index.js +165 -0
- package/node_modules/eslint-scope/lib/pattern-visitor.js +152 -0
- package/node_modules/eslint-scope/lib/reference.js +167 -0
- package/node_modules/eslint-scope/lib/referencer.js +629 -0
- package/node_modules/eslint-scope/lib/scope-manager.js +247 -0
- package/node_modules/eslint-scope/lib/scope.js +748 -0
- package/node_modules/eslint-scope/lib/variable.js +88 -0
- package/node_modules/eslint-scope/node_modules/estraverse/.jshintrc +16 -0
- package/node_modules/eslint-scope/node_modules/estraverse/LICENSE.BSD +19 -0
- package/node_modules/eslint-scope/node_modules/estraverse/README.md +153 -0
- package/node_modules/eslint-scope/node_modules/estraverse/estraverse.js +782 -0
- package/node_modules/eslint-scope/node_modules/estraverse/gulpfile.js +70 -0
- package/node_modules/eslint-scope/node_modules/estraverse/package.json +40 -0
- package/node_modules/eslint-scope/package.json +48 -0
- package/node_modules/eslint-utils/LICENSE +21 -0
- package/node_modules/eslint-utils/README.md +38 -0
- package/node_modules/eslint-utils/index.js +1956 -0
- package/node_modules/eslint-utils/index.js.map +1 -0
- package/node_modules/eslint-utils/index.mjs +1914 -0
- package/node_modules/eslint-utils/index.mjs.map +1 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/CHANGELOG.md +36 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/README.md +98 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +81 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json +289 -0
- package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json +39 -0
- package/node_modules/eslint-utils/package.json +78 -0
- package/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/node_modules/eslint-visitor-keys/README.md +107 -0
- package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +369 -0
- package/node_modules/eslint-visitor-keys/lib/index.js +59 -0
- package/node_modules/eslint-visitor-keys/lib/visitor-keys.js +305 -0
- package/node_modules/eslint-visitor-keys/package.json +55 -0
- package/node_modules/esrecurse/.babelrc +3 -0
- package/node_modules/esrecurse/README.md +171 -0
- package/node_modules/esrecurse/esrecurse.js +117 -0
- package/node_modules/esrecurse/gulpfile.babel.js +92 -0
- package/node_modules/esrecurse/package.json +52 -0
- package/node_modules/estraverse/.jshintrc +16 -0
- package/node_modules/estraverse/LICENSE.BSD +19 -0
- package/node_modules/estraverse/README.md +153 -0
- package/node_modules/estraverse/estraverse.js +805 -0
- package/node_modules/estraverse/gulpfile.js +70 -0
- package/node_modules/estraverse/package.json +40 -0
- package/node_modules/fast-glob/LICENSE +21 -0
- package/node_modules/fast-glob/README.md +795 -0
- package/node_modules/fast-glob/out/index.d.ts +27 -0
- package/node_modules/fast-glob/out/index.js +68 -0
- package/node_modules/fast-glob/out/managers/patterns.d.ts +6 -0
- package/node_modules/fast-glob/out/managers/patterns.js +21 -0
- package/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/node_modules/fast-glob/out/managers/tasks.js +80 -0
- package/node_modules/fast-glob/out/providers/async.d.ts +11 -0
- package/node_modules/fast-glob/out/providers/async.js +28 -0
- package/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/node_modules/fast-glob/out/providers/filters/entry.d.ts +20 -0
- package/node_modules/fast-glob/out/providers/filters/entry.js +60 -0
- package/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.js +50 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/node_modules/fast-glob/out/settings.js +57 -0
- package/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/node_modules/fast-glob/out/types/index.js +2 -0
- package/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/array.js +22 -0
- package/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/node_modules/fast-glob/out/utils/index.js +17 -0
- package/node_modules/fast-glob/out/utils/path.d.ts +8 -0
- package/node_modules/fast-glob/out/utils/path.js +33 -0
- package/node_modules/fast-glob/out/utils/pattern.d.ts +42 -0
- package/node_modules/fast-glob/out/utils/pattern.js +169 -0
- package/node_modules/fast-glob/out/utils/stream.d.ts +3 -0
- package/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/string.js +11 -0
- package/node_modules/fast-glob/package.json +94 -0
- package/node_modules/fastq/.github/dependabot.yml +11 -0
- package/node_modules/fastq/.github/workflows/ci.yml +50 -0
- package/node_modules/fastq/LICENSE +13 -0
- package/node_modules/fastq/README.md +309 -0
- package/node_modules/fastq/bench.js +66 -0
- package/node_modules/fastq/example.js +14 -0
- package/node_modules/fastq/example.mjs +11 -0
- package/node_modules/fastq/index.d.ts +37 -0
- package/node_modules/fastq/package.json +52 -0
- package/node_modules/fastq/queue.js +283 -0
- package/node_modules/fastq/test/example.ts +81 -0
- package/node_modules/fastq/test/promise.js +221 -0
- package/node_modules/fastq/test/test.js +566 -0
- package/node_modules/fastq/test/tsconfig.json +11 -0
- package/node_modules/fill-range/LICENSE +21 -0
- package/node_modules/fill-range/README.md +237 -0
- package/node_modules/fill-range/index.js +249 -0
- package/node_modules/fill-range/package.json +69 -0
- package/node_modules/functional-red-black-tree/.npmignore +16 -0
- package/node_modules/functional-red-black-tree/LICENSE +22 -0
- package/node_modules/functional-red-black-tree/README.md +237 -0
- package/node_modules/functional-red-black-tree/bench/test.js +11 -0
- package/node_modules/functional-red-black-tree/package.json +40 -0
- package/node_modules/functional-red-black-tree/rbtree.js +996 -0
- package/node_modules/functional-red-black-tree/test/test.js +479 -0
- package/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/node_modules/glob-parent/LICENSE +15 -0
- package/node_modules/glob-parent/README.md +137 -0
- package/node_modules/glob-parent/index.js +42 -0
- package/node_modules/glob-parent/package.json +48 -0
- package/node_modules/is-extglob/LICENSE +21 -0
- package/node_modules/is-extglob/README.md +107 -0
- package/node_modules/is-extglob/index.js +20 -0
- package/node_modules/is-extglob/package.json +69 -0
- package/node_modules/is-glob/LICENSE +21 -0
- package/node_modules/is-glob/README.md +206 -0
- package/node_modules/is-glob/index.js +150 -0
- package/node_modules/is-glob/package.json +81 -0
- package/node_modules/is-number/LICENSE +21 -0
- package/node_modules/is-number/README.md +187 -0
- package/node_modules/is-number/index.js +18 -0
- package/node_modules/is-number/package.json +82 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +166 -0
- package/node_modules/lru-cache/index.js +334 -0
- package/node_modules/lru-cache/package.json +34 -0
- package/node_modules/merge2/LICENSE +21 -0
- package/node_modules/merge2/README.md +144 -0
- package/node_modules/merge2/index.js +144 -0
- package/node_modules/merge2/package.json +43 -0
- package/node_modules/micromatch/CHANGELOG.md +109 -0
- package/node_modules/micromatch/LICENSE +21 -0
- package/node_modules/micromatch/README.md +1008 -0
- package/node_modules/micromatch/index.js +467 -0
- package/node_modules/micromatch/package.json +119 -0
- package/node_modules/path-type/index.d.ts +51 -0
- package/node_modules/path-type/index.js +43 -0
- package/node_modules/path-type/license +9 -0
- package/node_modules/path-type/package.json +45 -0
- package/node_modules/path-type/readme.md +72 -0
- package/node_modules/picomatch/CHANGELOG.md +136 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +708 -0
- package/node_modules/picomatch/index.js +3 -0
- package/node_modules/picomatch/lib/constants.js +179 -0
- package/node_modules/picomatch/lib/parse.js +1091 -0
- package/node_modules/picomatch/lib/picomatch.js +342 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +64 -0
- package/node_modules/picomatch/package.json +81 -0
- package/node_modules/queue-microtask/LICENSE +20 -0
- package/node_modules/queue-microtask/README.md +90 -0
- package/node_modules/queue-microtask/index.d.ts +2 -0
- package/node_modules/queue-microtask/index.js +9 -0
- package/node_modules/queue-microtask/package.json +55 -0
- package/node_modules/regexpp/LICENSE +21 -0
- package/node_modules/regexpp/README.md +178 -0
- package/node_modules/regexpp/index.d.ts +248 -0
- package/node_modules/regexpp/index.js +2096 -0
- package/node_modules/regexpp/index.js.map +1 -0
- package/node_modules/regexpp/index.mjs +2087 -0
- package/node_modules/regexpp/index.mjs.map +1 -0
- package/node_modules/regexpp/package.json +91 -0
- package/node_modules/reusify/.coveralls.yml +1 -0
- package/node_modules/reusify/.travis.yml +28 -0
- package/node_modules/reusify/LICENSE +22 -0
- package/node_modules/reusify/README.md +145 -0
- package/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/node_modules/reusify/benchmarks/fib.js +13 -0
- package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/node_modules/reusify/package.json +45 -0
- package/node_modules/reusify/reusify.js +33 -0
- package/node_modules/reusify/test.js +66 -0
- package/node_modules/run-parallel/LICENSE +20 -0
- package/node_modules/run-parallel/README.md +85 -0
- package/node_modules/run-parallel/index.js +51 -0
- package/node_modules/run-parallel/package.json +58 -0
- package/node_modules/semver/CHANGELOG.md +111 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +566 -0
- package/node_modules/semver/bin/semver.js +173 -0
- package/node_modules/semver/classes/comparator.js +135 -0
- package/node_modules/semver/classes/index.js +5 -0
- package/node_modules/semver/classes/range.js +510 -0
- package/node_modules/semver/classes/semver.js +287 -0
- package/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/semver/functions/cmp.js +48 -0
- package/node_modules/semver/functions/coerce.js +51 -0
- package/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/semver/functions/diff.js +23 -0
- package/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/semver/functions/inc.js +15 -0
- package/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/semver/functions/major.js +3 -0
- package/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/semver/functions/parse.js +33 -0
- package/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/semver/index.js +48 -0
- package/node_modules/semver/internal/constants.js +17 -0
- package/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/semver/internal/parse-options.js +11 -0
- package/node_modules/semver/internal/re.js +182 -0
- package/node_modules/semver/package.json +41 -0
- package/node_modules/semver/preload.js +2 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/semver/ranges/min-version.js +60 -0
- package/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/semver/ranges/simplify.js +44 -0
- package/node_modules/semver/ranges/subset.js +222 -0
- package/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/to-regex-range/LICENSE +21 -0
- package/node_modules/to-regex-range/README.md +305 -0
- package/node_modules/to-regex-range/index.js +288 -0
- package/node_modules/to-regex-range/package.json +88 -0
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +142 -0
- package/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +37 -0
- package/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +284 -0
- package/node_modules/tsutils/CHANGELOG.md +811 -0
- package/node_modules/tsutils/LICENSE +21 -0
- package/node_modules/tsutils/README.md +61 -0
- package/node_modules/tsutils/index.d.ts +2 -0
- package/node_modules/tsutils/index.js +6 -0
- package/node_modules/tsutils/index.js.map +1 -0
- package/node_modules/tsutils/package.json +63 -0
- package/node_modules/tsutils/typeguard/2.8/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/2.8/index.js +6 -0
- package/node_modules/tsutils/typeguard/2.8/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/2.8/node.d.ts +155 -0
- package/node_modules/tsutils/typeguard/2.8/node.js +714 -0
- package/node_modules/tsutils/typeguard/2.8/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/2.8/type.d.ts +18 -0
- package/node_modules/tsutils/typeguard/2.8/type.js +77 -0
- package/node_modules/tsutils/typeguard/2.8/type.js.map +1 -0
- package/node_modules/tsutils/typeguard/2.9/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/2.9/index.js +6 -0
- package/node_modules/tsutils/typeguard/2.9/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/2.9/node.d.ts +3 -0
- package/node_modules/tsutils/typeguard/2.9/node.js +11 -0
- package/node_modules/tsutils/typeguard/2.9/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/2.9/type.d.ts +1 -0
- package/node_modules/tsutils/typeguard/2.9/type.js +5 -0
- package/node_modules/tsutils/typeguard/2.9/type.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.0/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/3.0/index.js +6 -0
- package/node_modules/tsutils/typeguard/3.0/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.0/node.d.ts +5 -0
- package/node_modules/tsutils/typeguard/3.0/node.js +19 -0
- package/node_modules/tsutils/typeguard/3.0/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.0/type.d.ts +6 -0
- package/node_modules/tsutils/typeguard/3.0/type.js +16 -0
- package/node_modules/tsutils/typeguard/3.0/type.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.2/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/3.2/index.js +6 -0
- package/node_modules/tsutils/typeguard/3.2/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.2/node.d.ts +3 -0
- package/node_modules/tsutils/typeguard/3.2/node.js +11 -0
- package/node_modules/tsutils/typeguard/3.2/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/3.2/type.d.ts +1 -0
- package/node_modules/tsutils/typeguard/3.2/type.js +5 -0
- package/node_modules/tsutils/typeguard/3.2/type.js.map +1 -0
- package/node_modules/tsutils/typeguard/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/index.js +6 -0
- package/node_modules/tsutils/typeguard/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/next/index.d.ts +2 -0
- package/node_modules/tsutils/typeguard/next/index.js +6 -0
- package/node_modules/tsutils/typeguard/next/index.js.map +1 -0
- package/node_modules/tsutils/typeguard/next/node.d.ts +1 -0
- package/node_modules/tsutils/typeguard/next/node.js +5 -0
- package/node_modules/tsutils/typeguard/next/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/next/type.d.ts +1 -0
- package/node_modules/tsutils/typeguard/next/type.js +5 -0
- package/node_modules/tsutils/typeguard/next/type.js.map +1 -0
- package/node_modules/tsutils/typeguard/node.d.ts +1 -0
- package/node_modules/tsutils/typeguard/node.js +5 -0
- package/node_modules/tsutils/typeguard/node.js.map +1 -0
- package/node_modules/tsutils/typeguard/type.d.ts +1 -0
- package/node_modules/tsutils/typeguard/type.js +5 -0
- package/node_modules/tsutils/typeguard/type.js.map +1 -0
- package/node_modules/tsutils/util/control-flow.d.ts +24 -0
- package/node_modules/tsutils/util/control-flow.js +296 -0
- package/node_modules/tsutils/util/control-flow.js.map +1 -0
- package/node_modules/tsutils/util/convert-ast.d.ts +33 -0
- package/node_modules/tsutils/util/convert-ast.js +79 -0
- package/node_modules/tsutils/util/convert-ast.js.map +1 -0
- package/node_modules/tsutils/util/index.d.ts +5 -0
- package/node_modules/tsutils/util/index.js +9 -0
- package/node_modules/tsutils/util/index.js.map +1 -0
- package/node_modules/tsutils/util/type.d.ts +35 -0
- package/node_modules/tsutils/util/type.js +331 -0
- package/node_modules/tsutils/util/type.js.map +1 -0
- package/node_modules/tsutils/util/usage.d.ts +30 -0
- package/node_modules/tsutils/util/usage.js +658 -0
- package/node_modules/tsutils/util/usage.js.map +1 -0
- package/node_modules/tsutils/util/util.d.ts +265 -0
- package/node_modules/tsutils/util/util.js +1686 -0
- package/node_modules/tsutils/util/util.js.map +1 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +25 -24
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// THIS CODE WAS AUTOMATICALLY GENERATED
|
|
3
|
+
// DO NOT EDIT THIS CODE BY HAND
|
|
4
|
+
// YOU CAN REGENERATE IT USING yarn generate:lib
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.dom = void 0;
|
|
7
|
+
const base_config_1 = require("./base-config");
|
|
8
|
+
exports.dom = {
|
|
9
|
+
AddEventListenerOptions: base_config_1.TYPE,
|
|
10
|
+
AesCbcParams: base_config_1.TYPE,
|
|
11
|
+
AesCtrParams: base_config_1.TYPE,
|
|
12
|
+
AesDerivedKeyParams: base_config_1.TYPE,
|
|
13
|
+
AesGcmParams: base_config_1.TYPE,
|
|
14
|
+
AesKeyAlgorithm: base_config_1.TYPE,
|
|
15
|
+
AesKeyGenParams: base_config_1.TYPE,
|
|
16
|
+
Algorithm: base_config_1.TYPE,
|
|
17
|
+
AnalyserOptions: base_config_1.TYPE,
|
|
18
|
+
AnimationEventInit: base_config_1.TYPE,
|
|
19
|
+
AnimationPlaybackEventInit: base_config_1.TYPE,
|
|
20
|
+
AssignedNodesOptions: base_config_1.TYPE,
|
|
21
|
+
AudioBufferOptions: base_config_1.TYPE,
|
|
22
|
+
AudioBufferSourceOptions: base_config_1.TYPE,
|
|
23
|
+
AudioConfiguration: base_config_1.TYPE,
|
|
24
|
+
AudioContextOptions: base_config_1.TYPE,
|
|
25
|
+
AudioNodeOptions: base_config_1.TYPE,
|
|
26
|
+
AudioProcessingEventInit: base_config_1.TYPE,
|
|
27
|
+
AudioTimestamp: base_config_1.TYPE,
|
|
28
|
+
AudioWorkletNodeOptions: base_config_1.TYPE,
|
|
29
|
+
AuthenticationExtensionsClientInputs: base_config_1.TYPE,
|
|
30
|
+
AuthenticationExtensionsClientOutputs: base_config_1.TYPE,
|
|
31
|
+
AuthenticatorSelectionCriteria: base_config_1.TYPE,
|
|
32
|
+
BiquadFilterOptions: base_config_1.TYPE,
|
|
33
|
+
BlobEventInit: base_config_1.TYPE,
|
|
34
|
+
BlobPropertyBag: base_config_1.TYPE,
|
|
35
|
+
CSSStyleSheetInit: base_config_1.TYPE,
|
|
36
|
+
CacheQueryOptions: base_config_1.TYPE,
|
|
37
|
+
CanvasRenderingContext2DSettings: base_config_1.TYPE,
|
|
38
|
+
ChannelMergerOptions: base_config_1.TYPE,
|
|
39
|
+
ChannelSplitterOptions: base_config_1.TYPE,
|
|
40
|
+
ClientQueryOptions: base_config_1.TYPE,
|
|
41
|
+
ClipboardEventInit: base_config_1.TYPE,
|
|
42
|
+
ClipboardItemOptions: base_config_1.TYPE,
|
|
43
|
+
CloseEventInit: base_config_1.TYPE,
|
|
44
|
+
CompositionEventInit: base_config_1.TYPE,
|
|
45
|
+
ComputedEffectTiming: base_config_1.TYPE,
|
|
46
|
+
ComputedKeyframe: base_config_1.TYPE,
|
|
47
|
+
ConstantSourceOptions: base_config_1.TYPE,
|
|
48
|
+
ConstrainBooleanParameters: base_config_1.TYPE,
|
|
49
|
+
ConstrainDOMStringParameters: base_config_1.TYPE,
|
|
50
|
+
ConstrainDoubleRange: base_config_1.TYPE,
|
|
51
|
+
ConstrainULongRange: base_config_1.TYPE,
|
|
52
|
+
ConvolverOptions: base_config_1.TYPE,
|
|
53
|
+
CredentialCreationOptions: base_config_1.TYPE,
|
|
54
|
+
CredentialPropertiesOutput: base_config_1.TYPE,
|
|
55
|
+
CredentialRequestOptions: base_config_1.TYPE,
|
|
56
|
+
CryptoKeyPair: base_config_1.TYPE,
|
|
57
|
+
CustomEventInit: base_config_1.TYPE,
|
|
58
|
+
DOMMatrix2DInit: base_config_1.TYPE,
|
|
59
|
+
DOMMatrixInit: base_config_1.TYPE,
|
|
60
|
+
DOMPointInit: base_config_1.TYPE,
|
|
61
|
+
DOMQuadInit: base_config_1.TYPE,
|
|
62
|
+
DOMRectInit: base_config_1.TYPE,
|
|
63
|
+
DelayOptions: base_config_1.TYPE,
|
|
64
|
+
DeviceMotionEventAccelerationInit: base_config_1.TYPE,
|
|
65
|
+
DeviceMotionEventInit: base_config_1.TYPE,
|
|
66
|
+
DeviceMotionEventRotationRateInit: base_config_1.TYPE,
|
|
67
|
+
DeviceOrientationEventInit: base_config_1.TYPE,
|
|
68
|
+
DisplayMediaStreamConstraints: base_config_1.TYPE,
|
|
69
|
+
DocumentTimelineOptions: base_config_1.TYPE,
|
|
70
|
+
DoubleRange: base_config_1.TYPE,
|
|
71
|
+
DragEventInit: base_config_1.TYPE,
|
|
72
|
+
DynamicsCompressorOptions: base_config_1.TYPE,
|
|
73
|
+
EcKeyAlgorithm: base_config_1.TYPE,
|
|
74
|
+
EcKeyGenParams: base_config_1.TYPE,
|
|
75
|
+
EcKeyImportParams: base_config_1.TYPE,
|
|
76
|
+
EcdhKeyDeriveParams: base_config_1.TYPE,
|
|
77
|
+
EcdsaParams: base_config_1.TYPE,
|
|
78
|
+
EffectTiming: base_config_1.TYPE,
|
|
79
|
+
ElementCreationOptions: base_config_1.TYPE,
|
|
80
|
+
ElementDefinitionOptions: base_config_1.TYPE,
|
|
81
|
+
ErrorEventInit: base_config_1.TYPE,
|
|
82
|
+
EventInit: base_config_1.TYPE,
|
|
83
|
+
EventListenerOptions: base_config_1.TYPE,
|
|
84
|
+
EventModifierInit: base_config_1.TYPE,
|
|
85
|
+
EventSourceInit: base_config_1.TYPE,
|
|
86
|
+
FilePropertyBag: base_config_1.TYPE,
|
|
87
|
+
FileSystemFlags: base_config_1.TYPE,
|
|
88
|
+
FocusEventInit: base_config_1.TYPE,
|
|
89
|
+
FocusOptions: base_config_1.TYPE,
|
|
90
|
+
FontFaceDescriptors: base_config_1.TYPE,
|
|
91
|
+
FontFaceSetLoadEventInit: base_config_1.TYPE,
|
|
92
|
+
FormDataEventInit: base_config_1.TYPE,
|
|
93
|
+
FullscreenOptions: base_config_1.TYPE,
|
|
94
|
+
GainOptions: base_config_1.TYPE,
|
|
95
|
+
GamepadEventInit: base_config_1.TYPE,
|
|
96
|
+
GetAnimationsOptions: base_config_1.TYPE,
|
|
97
|
+
GetNotificationOptions: base_config_1.TYPE,
|
|
98
|
+
GetRootNodeOptions: base_config_1.TYPE,
|
|
99
|
+
HashChangeEventInit: base_config_1.TYPE,
|
|
100
|
+
HkdfParams: base_config_1.TYPE,
|
|
101
|
+
HmacImportParams: base_config_1.TYPE,
|
|
102
|
+
HmacKeyAlgorithm: base_config_1.TYPE,
|
|
103
|
+
HmacKeyGenParams: base_config_1.TYPE,
|
|
104
|
+
IDBDatabaseInfo: base_config_1.TYPE,
|
|
105
|
+
IDBIndexParameters: base_config_1.TYPE,
|
|
106
|
+
IDBObjectStoreParameters: base_config_1.TYPE,
|
|
107
|
+
IDBVersionChangeEventInit: base_config_1.TYPE,
|
|
108
|
+
IIRFilterOptions: base_config_1.TYPE,
|
|
109
|
+
IdleRequestOptions: base_config_1.TYPE,
|
|
110
|
+
ImageBitmapOptions: base_config_1.TYPE,
|
|
111
|
+
ImageBitmapRenderingContextSettings: base_config_1.TYPE,
|
|
112
|
+
ImageDataSettings: base_config_1.TYPE,
|
|
113
|
+
ImportMeta: base_config_1.TYPE,
|
|
114
|
+
InputEventInit: base_config_1.TYPE,
|
|
115
|
+
IntersectionObserverEntryInit: base_config_1.TYPE,
|
|
116
|
+
IntersectionObserverInit: base_config_1.TYPE,
|
|
117
|
+
JsonWebKey: base_config_1.TYPE,
|
|
118
|
+
KeyAlgorithm: base_config_1.TYPE,
|
|
119
|
+
KeyboardEventInit: base_config_1.TYPE,
|
|
120
|
+
Keyframe: base_config_1.TYPE,
|
|
121
|
+
KeyframeAnimationOptions: base_config_1.TYPE,
|
|
122
|
+
KeyframeEffectOptions: base_config_1.TYPE,
|
|
123
|
+
MediaCapabilitiesDecodingInfo: base_config_1.TYPE,
|
|
124
|
+
MediaCapabilitiesEncodingInfo: base_config_1.TYPE,
|
|
125
|
+
MediaCapabilitiesInfo: base_config_1.TYPE,
|
|
126
|
+
MediaConfiguration: base_config_1.TYPE,
|
|
127
|
+
MediaDecodingConfiguration: base_config_1.TYPE,
|
|
128
|
+
MediaElementAudioSourceOptions: base_config_1.TYPE,
|
|
129
|
+
MediaEncodingConfiguration: base_config_1.TYPE,
|
|
130
|
+
MediaEncryptedEventInit: base_config_1.TYPE,
|
|
131
|
+
MediaImage: base_config_1.TYPE,
|
|
132
|
+
MediaKeyMessageEventInit: base_config_1.TYPE,
|
|
133
|
+
MediaKeySystemConfiguration: base_config_1.TYPE,
|
|
134
|
+
MediaKeySystemMediaCapability: base_config_1.TYPE,
|
|
135
|
+
MediaMetadataInit: base_config_1.TYPE,
|
|
136
|
+
MediaPositionState: base_config_1.TYPE,
|
|
137
|
+
MediaQueryListEventInit: base_config_1.TYPE,
|
|
138
|
+
MediaRecorderErrorEventInit: base_config_1.TYPE,
|
|
139
|
+
MediaRecorderOptions: base_config_1.TYPE,
|
|
140
|
+
MediaSessionActionDetails: base_config_1.TYPE,
|
|
141
|
+
MediaStreamAudioSourceOptions: base_config_1.TYPE,
|
|
142
|
+
MediaStreamConstraints: base_config_1.TYPE,
|
|
143
|
+
MediaStreamTrackEventInit: base_config_1.TYPE,
|
|
144
|
+
MediaTrackCapabilities: base_config_1.TYPE,
|
|
145
|
+
MediaTrackConstraintSet: base_config_1.TYPE,
|
|
146
|
+
MediaTrackConstraints: base_config_1.TYPE,
|
|
147
|
+
MediaTrackSettings: base_config_1.TYPE,
|
|
148
|
+
MediaTrackSupportedConstraints: base_config_1.TYPE,
|
|
149
|
+
MessageEventInit: base_config_1.TYPE,
|
|
150
|
+
MouseEventInit: base_config_1.TYPE,
|
|
151
|
+
MultiCacheQueryOptions: base_config_1.TYPE,
|
|
152
|
+
MutationObserverInit: base_config_1.TYPE,
|
|
153
|
+
NotificationAction: base_config_1.TYPE,
|
|
154
|
+
NotificationOptions: base_config_1.TYPE,
|
|
155
|
+
OfflineAudioCompletionEventInit: base_config_1.TYPE,
|
|
156
|
+
OfflineAudioContextOptions: base_config_1.TYPE,
|
|
157
|
+
OptionalEffectTiming: base_config_1.TYPE,
|
|
158
|
+
OscillatorOptions: base_config_1.TYPE,
|
|
159
|
+
PageTransitionEventInit: base_config_1.TYPE,
|
|
160
|
+
PannerOptions: base_config_1.TYPE,
|
|
161
|
+
PaymentCurrencyAmount: base_config_1.TYPE,
|
|
162
|
+
PaymentDetailsBase: base_config_1.TYPE,
|
|
163
|
+
PaymentDetailsInit: base_config_1.TYPE,
|
|
164
|
+
PaymentDetailsModifier: base_config_1.TYPE,
|
|
165
|
+
PaymentDetailsUpdate: base_config_1.TYPE,
|
|
166
|
+
PaymentItem: base_config_1.TYPE,
|
|
167
|
+
PaymentMethodChangeEventInit: base_config_1.TYPE,
|
|
168
|
+
PaymentMethodData: base_config_1.TYPE,
|
|
169
|
+
PaymentRequestUpdateEventInit: base_config_1.TYPE,
|
|
170
|
+
PaymentValidationErrors: base_config_1.TYPE,
|
|
171
|
+
Pbkdf2Params: base_config_1.TYPE,
|
|
172
|
+
PerformanceMarkOptions: base_config_1.TYPE,
|
|
173
|
+
PerformanceMeasureOptions: base_config_1.TYPE,
|
|
174
|
+
PerformanceObserverInit: base_config_1.TYPE,
|
|
175
|
+
PeriodicWaveConstraints: base_config_1.TYPE,
|
|
176
|
+
PeriodicWaveOptions: base_config_1.TYPE,
|
|
177
|
+
PermissionDescriptor: base_config_1.TYPE,
|
|
178
|
+
PointerEventInit: base_config_1.TYPE,
|
|
179
|
+
PopStateEventInit: base_config_1.TYPE,
|
|
180
|
+
PositionOptions: base_config_1.TYPE,
|
|
181
|
+
ProgressEventInit: base_config_1.TYPE,
|
|
182
|
+
PromiseRejectionEventInit: base_config_1.TYPE,
|
|
183
|
+
PropertyIndexedKeyframes: base_config_1.TYPE,
|
|
184
|
+
PublicKeyCredentialCreationOptions: base_config_1.TYPE,
|
|
185
|
+
PublicKeyCredentialDescriptor: base_config_1.TYPE,
|
|
186
|
+
PublicKeyCredentialEntity: base_config_1.TYPE,
|
|
187
|
+
PublicKeyCredentialParameters: base_config_1.TYPE,
|
|
188
|
+
PublicKeyCredentialRequestOptions: base_config_1.TYPE,
|
|
189
|
+
PublicKeyCredentialRpEntity: base_config_1.TYPE,
|
|
190
|
+
PublicKeyCredentialUserEntity: base_config_1.TYPE,
|
|
191
|
+
PushSubscriptionJSON: base_config_1.TYPE,
|
|
192
|
+
PushSubscriptionOptionsInit: base_config_1.TYPE,
|
|
193
|
+
QueuingStrategy: base_config_1.TYPE,
|
|
194
|
+
QueuingStrategyInit: base_config_1.TYPE,
|
|
195
|
+
RTCAnswerOptions: base_config_1.TYPE,
|
|
196
|
+
RTCCertificateExpiration: base_config_1.TYPE,
|
|
197
|
+
RTCConfiguration: base_config_1.TYPE,
|
|
198
|
+
RTCDTMFToneChangeEventInit: base_config_1.TYPE,
|
|
199
|
+
RTCDataChannelEventInit: base_config_1.TYPE,
|
|
200
|
+
RTCDataChannelInit: base_config_1.TYPE,
|
|
201
|
+
RTCDtlsFingerprint: base_config_1.TYPE,
|
|
202
|
+
RTCIceCandidateInit: base_config_1.TYPE,
|
|
203
|
+
RTCIceCandidatePairStats: base_config_1.TYPE,
|
|
204
|
+
RTCIceServer: base_config_1.TYPE,
|
|
205
|
+
RTCInboundRtpStreamStats: base_config_1.TYPE,
|
|
206
|
+
RTCLocalSessionDescriptionInit: base_config_1.TYPE,
|
|
207
|
+
RTCOfferAnswerOptions: base_config_1.TYPE,
|
|
208
|
+
RTCOfferOptions: base_config_1.TYPE,
|
|
209
|
+
RTCOutboundRtpStreamStats: base_config_1.TYPE,
|
|
210
|
+
RTCPeerConnectionIceErrorEventInit: base_config_1.TYPE,
|
|
211
|
+
RTCPeerConnectionIceEventInit: base_config_1.TYPE,
|
|
212
|
+
RTCReceivedRtpStreamStats: base_config_1.TYPE,
|
|
213
|
+
RTCRtcpParameters: base_config_1.TYPE,
|
|
214
|
+
RTCRtpCapabilities: base_config_1.TYPE,
|
|
215
|
+
RTCRtpCodecCapability: base_config_1.TYPE,
|
|
216
|
+
RTCRtpCodecParameters: base_config_1.TYPE,
|
|
217
|
+
RTCRtpCodingParameters: base_config_1.TYPE,
|
|
218
|
+
RTCRtpContributingSource: base_config_1.TYPE,
|
|
219
|
+
RTCRtpEncodingParameters: base_config_1.TYPE,
|
|
220
|
+
RTCRtpHeaderExtensionCapability: base_config_1.TYPE,
|
|
221
|
+
RTCRtpHeaderExtensionParameters: base_config_1.TYPE,
|
|
222
|
+
RTCRtpParameters: base_config_1.TYPE,
|
|
223
|
+
RTCRtpReceiveParameters: base_config_1.TYPE,
|
|
224
|
+
RTCRtpSendParameters: base_config_1.TYPE,
|
|
225
|
+
RTCRtpStreamStats: base_config_1.TYPE,
|
|
226
|
+
RTCRtpSynchronizationSource: base_config_1.TYPE,
|
|
227
|
+
RTCRtpTransceiverInit: base_config_1.TYPE,
|
|
228
|
+
RTCSentRtpStreamStats: base_config_1.TYPE,
|
|
229
|
+
RTCSessionDescriptionInit: base_config_1.TYPE,
|
|
230
|
+
RTCStats: base_config_1.TYPE,
|
|
231
|
+
RTCTrackEventInit: base_config_1.TYPE,
|
|
232
|
+
RTCTransportStats: base_config_1.TYPE,
|
|
233
|
+
ReadableStreamDefaultReadDoneResult: base_config_1.TYPE,
|
|
234
|
+
ReadableStreamDefaultReadValueResult: base_config_1.TYPE,
|
|
235
|
+
ReadableWritablePair: base_config_1.TYPE,
|
|
236
|
+
RegistrationOptions: base_config_1.TYPE,
|
|
237
|
+
RequestInit: base_config_1.TYPE,
|
|
238
|
+
ResizeObserverOptions: base_config_1.TYPE,
|
|
239
|
+
ResponseInit: base_config_1.TYPE,
|
|
240
|
+
RsaHashedImportParams: base_config_1.TYPE,
|
|
241
|
+
RsaHashedKeyAlgorithm: base_config_1.TYPE,
|
|
242
|
+
RsaHashedKeyGenParams: base_config_1.TYPE,
|
|
243
|
+
RsaKeyAlgorithm: base_config_1.TYPE,
|
|
244
|
+
RsaKeyGenParams: base_config_1.TYPE,
|
|
245
|
+
RsaOaepParams: base_config_1.TYPE,
|
|
246
|
+
RsaOtherPrimesInfo: base_config_1.TYPE,
|
|
247
|
+
RsaPssParams: base_config_1.TYPE,
|
|
248
|
+
SVGBoundingBoxOptions: base_config_1.TYPE,
|
|
249
|
+
ScrollIntoViewOptions: base_config_1.TYPE,
|
|
250
|
+
ScrollOptions: base_config_1.TYPE,
|
|
251
|
+
ScrollToOptions: base_config_1.TYPE,
|
|
252
|
+
SecurityPolicyViolationEventInit: base_config_1.TYPE,
|
|
253
|
+
ShadowRootInit: base_config_1.TYPE,
|
|
254
|
+
ShareData: base_config_1.TYPE,
|
|
255
|
+
SpeechSynthesisErrorEventInit: base_config_1.TYPE,
|
|
256
|
+
SpeechSynthesisEventInit: base_config_1.TYPE,
|
|
257
|
+
StaticRangeInit: base_config_1.TYPE,
|
|
258
|
+
StereoPannerOptions: base_config_1.TYPE,
|
|
259
|
+
StorageEstimate: base_config_1.TYPE,
|
|
260
|
+
StorageEventInit: base_config_1.TYPE,
|
|
261
|
+
StreamPipeOptions: base_config_1.TYPE,
|
|
262
|
+
StructuredSerializeOptions: base_config_1.TYPE,
|
|
263
|
+
SubmitEventInit: base_config_1.TYPE,
|
|
264
|
+
TextDecodeOptions: base_config_1.TYPE,
|
|
265
|
+
TextDecoderOptions: base_config_1.TYPE,
|
|
266
|
+
TextEncoderEncodeIntoResult: base_config_1.TYPE,
|
|
267
|
+
TouchEventInit: base_config_1.TYPE,
|
|
268
|
+
TouchInit: base_config_1.TYPE,
|
|
269
|
+
TrackEventInit: base_config_1.TYPE,
|
|
270
|
+
Transformer: base_config_1.TYPE,
|
|
271
|
+
TransitionEventInit: base_config_1.TYPE,
|
|
272
|
+
UIEventInit: base_config_1.TYPE,
|
|
273
|
+
ULongRange: base_config_1.TYPE,
|
|
274
|
+
UnderlyingSink: base_config_1.TYPE,
|
|
275
|
+
UnderlyingSource: base_config_1.TYPE,
|
|
276
|
+
VideoConfiguration: base_config_1.TYPE,
|
|
277
|
+
WaveShaperOptions: base_config_1.TYPE,
|
|
278
|
+
WebGLContextAttributes: base_config_1.TYPE,
|
|
279
|
+
WebGLContextEventInit: base_config_1.TYPE,
|
|
280
|
+
WheelEventInit: base_config_1.TYPE,
|
|
281
|
+
WindowPostMessageOptions: base_config_1.TYPE,
|
|
282
|
+
WorkerOptions: base_config_1.TYPE,
|
|
283
|
+
WorkletOptions: base_config_1.TYPE,
|
|
284
|
+
NodeFilter: base_config_1.TYPE_VALUE,
|
|
285
|
+
XPathNSResolver: base_config_1.TYPE,
|
|
286
|
+
ANGLE_instanced_arrays: base_config_1.TYPE,
|
|
287
|
+
ARIAMixin: base_config_1.TYPE,
|
|
288
|
+
AbortController: base_config_1.TYPE_VALUE,
|
|
289
|
+
AbortSignalEventMap: base_config_1.TYPE,
|
|
290
|
+
AbortSignal: base_config_1.TYPE_VALUE,
|
|
291
|
+
AbstractRange: base_config_1.TYPE_VALUE,
|
|
292
|
+
AbstractWorkerEventMap: base_config_1.TYPE,
|
|
293
|
+
AbstractWorker: base_config_1.TYPE,
|
|
294
|
+
AnalyserNode: base_config_1.TYPE_VALUE,
|
|
295
|
+
Animatable: base_config_1.TYPE,
|
|
296
|
+
AnimationEventMap: base_config_1.TYPE,
|
|
297
|
+
Animation: base_config_1.TYPE_VALUE,
|
|
298
|
+
AnimationEffect: base_config_1.TYPE_VALUE,
|
|
299
|
+
AnimationEvent: base_config_1.TYPE_VALUE,
|
|
300
|
+
AnimationFrameProvider: base_config_1.TYPE,
|
|
301
|
+
AnimationPlaybackEvent: base_config_1.TYPE_VALUE,
|
|
302
|
+
AnimationTimeline: base_config_1.TYPE_VALUE,
|
|
303
|
+
Attr: base_config_1.TYPE_VALUE,
|
|
304
|
+
AudioBuffer: base_config_1.TYPE_VALUE,
|
|
305
|
+
AudioBufferSourceNode: base_config_1.TYPE_VALUE,
|
|
306
|
+
AudioContext: base_config_1.TYPE_VALUE,
|
|
307
|
+
AudioDestinationNode: base_config_1.TYPE_VALUE,
|
|
308
|
+
AudioListener: base_config_1.TYPE_VALUE,
|
|
309
|
+
AudioNode: base_config_1.TYPE_VALUE,
|
|
310
|
+
AudioParam: base_config_1.TYPE_VALUE,
|
|
311
|
+
AudioParamMap: base_config_1.TYPE_VALUE,
|
|
312
|
+
AudioProcessingEvent: base_config_1.TYPE_VALUE,
|
|
313
|
+
AudioScheduledSourceNodeEventMap: base_config_1.TYPE,
|
|
314
|
+
AudioScheduledSourceNode: base_config_1.TYPE_VALUE,
|
|
315
|
+
AudioWorklet: base_config_1.TYPE_VALUE,
|
|
316
|
+
AudioWorkletNodeEventMap: base_config_1.TYPE,
|
|
317
|
+
AudioWorkletNode: base_config_1.TYPE_VALUE,
|
|
318
|
+
AuthenticatorAssertionResponse: base_config_1.TYPE_VALUE,
|
|
319
|
+
AuthenticatorAttestationResponse: base_config_1.TYPE_VALUE,
|
|
320
|
+
AuthenticatorResponse: base_config_1.TYPE_VALUE,
|
|
321
|
+
BarProp: base_config_1.TYPE_VALUE,
|
|
322
|
+
BaseAudioContextEventMap: base_config_1.TYPE,
|
|
323
|
+
BaseAudioContext: base_config_1.TYPE_VALUE,
|
|
324
|
+
BeforeUnloadEvent: base_config_1.TYPE_VALUE,
|
|
325
|
+
BiquadFilterNode: base_config_1.TYPE_VALUE,
|
|
326
|
+
Blob: base_config_1.TYPE_VALUE,
|
|
327
|
+
BlobEvent: base_config_1.TYPE_VALUE,
|
|
328
|
+
Body: base_config_1.TYPE,
|
|
329
|
+
BroadcastChannelEventMap: base_config_1.TYPE,
|
|
330
|
+
BroadcastChannel: base_config_1.TYPE_VALUE,
|
|
331
|
+
ByteLengthQueuingStrategy: base_config_1.TYPE_VALUE,
|
|
332
|
+
CDATASection: base_config_1.TYPE_VALUE,
|
|
333
|
+
CSSAnimation: base_config_1.TYPE_VALUE,
|
|
334
|
+
CSSConditionRule: base_config_1.TYPE_VALUE,
|
|
335
|
+
CSSCounterStyleRule: base_config_1.TYPE_VALUE,
|
|
336
|
+
CSSFontFaceRule: base_config_1.TYPE_VALUE,
|
|
337
|
+
CSSGroupingRule: base_config_1.TYPE_VALUE,
|
|
338
|
+
CSSImportRule: base_config_1.TYPE_VALUE,
|
|
339
|
+
CSSKeyframeRule: base_config_1.TYPE_VALUE,
|
|
340
|
+
CSSKeyframesRule: base_config_1.TYPE_VALUE,
|
|
341
|
+
CSSMediaRule: base_config_1.TYPE_VALUE,
|
|
342
|
+
CSSNamespaceRule: base_config_1.TYPE_VALUE,
|
|
343
|
+
CSSPageRule: base_config_1.TYPE_VALUE,
|
|
344
|
+
CSSRule: base_config_1.TYPE_VALUE,
|
|
345
|
+
CSSRuleList: base_config_1.TYPE_VALUE,
|
|
346
|
+
CSSStyleDeclaration: base_config_1.TYPE_VALUE,
|
|
347
|
+
CSSStyleRule: base_config_1.TYPE_VALUE,
|
|
348
|
+
CSSStyleSheet: base_config_1.TYPE_VALUE,
|
|
349
|
+
CSSSupportsRule: base_config_1.TYPE_VALUE,
|
|
350
|
+
CSSTransition: base_config_1.TYPE_VALUE,
|
|
351
|
+
Cache: base_config_1.TYPE_VALUE,
|
|
352
|
+
CacheStorage: base_config_1.TYPE_VALUE,
|
|
353
|
+
CanvasCompositing: base_config_1.TYPE,
|
|
354
|
+
CanvasDrawImage: base_config_1.TYPE,
|
|
355
|
+
CanvasDrawPath: base_config_1.TYPE,
|
|
356
|
+
CanvasFillStrokeStyles: base_config_1.TYPE,
|
|
357
|
+
CanvasFilters: base_config_1.TYPE,
|
|
358
|
+
CanvasGradient: base_config_1.TYPE_VALUE,
|
|
359
|
+
CanvasImageData: base_config_1.TYPE,
|
|
360
|
+
CanvasImageSmoothing: base_config_1.TYPE,
|
|
361
|
+
CanvasPath: base_config_1.TYPE,
|
|
362
|
+
CanvasPathDrawingStyles: base_config_1.TYPE,
|
|
363
|
+
CanvasPattern: base_config_1.TYPE_VALUE,
|
|
364
|
+
CanvasRect: base_config_1.TYPE,
|
|
365
|
+
CanvasRenderingContext2D: base_config_1.TYPE_VALUE,
|
|
366
|
+
CanvasShadowStyles: base_config_1.TYPE,
|
|
367
|
+
CanvasState: base_config_1.TYPE,
|
|
368
|
+
CanvasText: base_config_1.TYPE,
|
|
369
|
+
CanvasTextDrawingStyles: base_config_1.TYPE,
|
|
370
|
+
CanvasTransform: base_config_1.TYPE,
|
|
371
|
+
CanvasUserInterface: base_config_1.TYPE,
|
|
372
|
+
ChannelMergerNode: base_config_1.TYPE_VALUE,
|
|
373
|
+
ChannelSplitterNode: base_config_1.TYPE_VALUE,
|
|
374
|
+
CharacterData: base_config_1.TYPE_VALUE,
|
|
375
|
+
ChildNode: base_config_1.TYPE,
|
|
376
|
+
ClientRect: base_config_1.TYPE,
|
|
377
|
+
Clipboard: base_config_1.TYPE_VALUE,
|
|
378
|
+
ClipboardEvent: base_config_1.TYPE_VALUE,
|
|
379
|
+
ClipboardItem: base_config_1.TYPE_VALUE,
|
|
380
|
+
CloseEvent: base_config_1.TYPE_VALUE,
|
|
381
|
+
Comment: base_config_1.TYPE_VALUE,
|
|
382
|
+
CompositionEvent: base_config_1.TYPE_VALUE,
|
|
383
|
+
ConstantSourceNode: base_config_1.TYPE_VALUE,
|
|
384
|
+
ConvolverNode: base_config_1.TYPE_VALUE,
|
|
385
|
+
CountQueuingStrategy: base_config_1.TYPE_VALUE,
|
|
386
|
+
Credential: base_config_1.TYPE_VALUE,
|
|
387
|
+
CredentialsContainer: base_config_1.TYPE_VALUE,
|
|
388
|
+
Crypto: base_config_1.TYPE_VALUE,
|
|
389
|
+
CryptoKey: base_config_1.TYPE_VALUE,
|
|
390
|
+
CustomElementRegistry: base_config_1.TYPE_VALUE,
|
|
391
|
+
CustomEvent: base_config_1.TYPE_VALUE,
|
|
392
|
+
DOMException: base_config_1.TYPE_VALUE,
|
|
393
|
+
DOMImplementation: base_config_1.TYPE_VALUE,
|
|
394
|
+
DOMMatrix: base_config_1.TYPE_VALUE,
|
|
395
|
+
SVGMatrix: base_config_1.TYPE_VALUE,
|
|
396
|
+
WebKitCSSMatrix: base_config_1.TYPE_VALUE,
|
|
397
|
+
DOMMatrixReadOnly: base_config_1.TYPE_VALUE,
|
|
398
|
+
DOMParser: base_config_1.TYPE_VALUE,
|
|
399
|
+
DOMPoint: base_config_1.TYPE_VALUE,
|
|
400
|
+
SVGPoint: base_config_1.TYPE_VALUE,
|
|
401
|
+
DOMPointReadOnly: base_config_1.TYPE_VALUE,
|
|
402
|
+
DOMQuad: base_config_1.TYPE_VALUE,
|
|
403
|
+
DOMRect: base_config_1.TYPE_VALUE,
|
|
404
|
+
SVGRect: base_config_1.TYPE_VALUE,
|
|
405
|
+
DOMRectList: base_config_1.TYPE_VALUE,
|
|
406
|
+
DOMRectReadOnly: base_config_1.TYPE_VALUE,
|
|
407
|
+
DOMStringList: base_config_1.TYPE_VALUE,
|
|
408
|
+
DOMStringMap: base_config_1.TYPE_VALUE,
|
|
409
|
+
DOMTokenList: base_config_1.TYPE_VALUE,
|
|
410
|
+
DataTransfer: base_config_1.TYPE_VALUE,
|
|
411
|
+
DataTransferItem: base_config_1.TYPE_VALUE,
|
|
412
|
+
DataTransferItemList: base_config_1.TYPE_VALUE,
|
|
413
|
+
DelayNode: base_config_1.TYPE_VALUE,
|
|
414
|
+
DeviceMotionEvent: base_config_1.TYPE_VALUE,
|
|
415
|
+
DeviceMotionEventAcceleration: base_config_1.TYPE,
|
|
416
|
+
DeviceMotionEventRotationRate: base_config_1.TYPE,
|
|
417
|
+
DeviceOrientationEvent: base_config_1.TYPE_VALUE,
|
|
418
|
+
DocumentEventMap: base_config_1.TYPE,
|
|
419
|
+
Document: base_config_1.TYPE_VALUE,
|
|
420
|
+
DocumentAndElementEventHandlersEventMap: base_config_1.TYPE,
|
|
421
|
+
DocumentAndElementEventHandlers: base_config_1.TYPE,
|
|
422
|
+
DocumentFragment: base_config_1.TYPE_VALUE,
|
|
423
|
+
DocumentOrShadowRoot: base_config_1.TYPE,
|
|
424
|
+
DocumentTimeline: base_config_1.TYPE_VALUE,
|
|
425
|
+
DocumentType: base_config_1.TYPE_VALUE,
|
|
426
|
+
DragEvent: base_config_1.TYPE_VALUE,
|
|
427
|
+
DynamicsCompressorNode: base_config_1.TYPE_VALUE,
|
|
428
|
+
EXT_blend_minmax: base_config_1.TYPE,
|
|
429
|
+
EXT_color_buffer_float: base_config_1.TYPE,
|
|
430
|
+
EXT_color_buffer_half_float: base_config_1.TYPE,
|
|
431
|
+
EXT_float_blend: base_config_1.TYPE,
|
|
432
|
+
EXT_frag_depth: base_config_1.TYPE,
|
|
433
|
+
EXT_sRGB: base_config_1.TYPE,
|
|
434
|
+
EXT_shader_texture_lod: base_config_1.TYPE,
|
|
435
|
+
EXT_texture_compression_rgtc: base_config_1.TYPE,
|
|
436
|
+
EXT_texture_filter_anisotropic: base_config_1.TYPE,
|
|
437
|
+
ElementEventMap: base_config_1.TYPE,
|
|
438
|
+
Element: base_config_1.TYPE_VALUE,
|
|
439
|
+
ElementCSSInlineStyle: base_config_1.TYPE,
|
|
440
|
+
ElementContentEditable: base_config_1.TYPE,
|
|
441
|
+
ElementInternals: base_config_1.TYPE_VALUE,
|
|
442
|
+
ErrorEvent: base_config_1.TYPE_VALUE,
|
|
443
|
+
Event: base_config_1.TYPE_VALUE,
|
|
444
|
+
EventListener: base_config_1.TYPE,
|
|
445
|
+
EventListenerObject: base_config_1.TYPE,
|
|
446
|
+
EventSourceEventMap: base_config_1.TYPE,
|
|
447
|
+
EventSource: base_config_1.TYPE_VALUE,
|
|
448
|
+
EventTarget: base_config_1.TYPE_VALUE,
|
|
449
|
+
External: base_config_1.TYPE_VALUE,
|
|
450
|
+
File: base_config_1.TYPE_VALUE,
|
|
451
|
+
FileList: base_config_1.TYPE_VALUE,
|
|
452
|
+
FileReaderEventMap: base_config_1.TYPE,
|
|
453
|
+
FileReader: base_config_1.TYPE_VALUE,
|
|
454
|
+
FileSystem: base_config_1.TYPE_VALUE,
|
|
455
|
+
FileSystemDirectoryEntry: base_config_1.TYPE_VALUE,
|
|
456
|
+
FileSystemDirectoryReader: base_config_1.TYPE_VALUE,
|
|
457
|
+
FileSystemEntry: base_config_1.TYPE_VALUE,
|
|
458
|
+
FileSystemFileEntry: base_config_1.TYPE_VALUE,
|
|
459
|
+
FocusEvent: base_config_1.TYPE_VALUE,
|
|
460
|
+
FontFace: base_config_1.TYPE_VALUE,
|
|
461
|
+
FontFaceSetEventMap: base_config_1.TYPE,
|
|
462
|
+
FontFaceSet: base_config_1.TYPE_VALUE,
|
|
463
|
+
FontFaceSetLoadEvent: base_config_1.TYPE_VALUE,
|
|
464
|
+
FontFaceSource: base_config_1.TYPE,
|
|
465
|
+
FormData: base_config_1.TYPE_VALUE,
|
|
466
|
+
FormDataEvent: base_config_1.TYPE_VALUE,
|
|
467
|
+
GainNode: base_config_1.TYPE_VALUE,
|
|
468
|
+
Gamepad: base_config_1.TYPE_VALUE,
|
|
469
|
+
GamepadButton: base_config_1.TYPE_VALUE,
|
|
470
|
+
GamepadEvent: base_config_1.TYPE_VALUE,
|
|
471
|
+
GamepadHapticActuator: base_config_1.TYPE_VALUE,
|
|
472
|
+
GenericTransformStream: base_config_1.TYPE,
|
|
473
|
+
Geolocation: base_config_1.TYPE_VALUE,
|
|
474
|
+
GeolocationCoordinates: base_config_1.TYPE_VALUE,
|
|
475
|
+
GeolocationPosition: base_config_1.TYPE_VALUE,
|
|
476
|
+
GeolocationPositionError: base_config_1.TYPE_VALUE,
|
|
477
|
+
GlobalEventHandlersEventMap: base_config_1.TYPE,
|
|
478
|
+
GlobalEventHandlers: base_config_1.TYPE,
|
|
479
|
+
HTMLAllCollection: base_config_1.TYPE_VALUE,
|
|
480
|
+
HTMLAnchorElement: base_config_1.TYPE_VALUE,
|
|
481
|
+
HTMLAreaElement: base_config_1.TYPE_VALUE,
|
|
482
|
+
HTMLAudioElement: base_config_1.TYPE_VALUE,
|
|
483
|
+
HTMLBRElement: base_config_1.TYPE_VALUE,
|
|
484
|
+
HTMLBaseElement: base_config_1.TYPE_VALUE,
|
|
485
|
+
HTMLBodyElementEventMap: base_config_1.TYPE,
|
|
486
|
+
HTMLBodyElement: base_config_1.TYPE_VALUE,
|
|
487
|
+
HTMLButtonElement: base_config_1.TYPE_VALUE,
|
|
488
|
+
HTMLCanvasElement: base_config_1.TYPE_VALUE,
|
|
489
|
+
HTMLCollectionBase: base_config_1.TYPE,
|
|
490
|
+
HTMLCollection: base_config_1.TYPE_VALUE,
|
|
491
|
+
HTMLCollectionOf: base_config_1.TYPE,
|
|
492
|
+
HTMLDListElement: base_config_1.TYPE_VALUE,
|
|
493
|
+
HTMLDataElement: base_config_1.TYPE_VALUE,
|
|
494
|
+
HTMLDataListElement: base_config_1.TYPE_VALUE,
|
|
495
|
+
HTMLDetailsElement: base_config_1.TYPE_VALUE,
|
|
496
|
+
HTMLDialogElement: base_config_1.TYPE,
|
|
497
|
+
HTMLDirectoryElement: base_config_1.TYPE_VALUE,
|
|
498
|
+
HTMLDivElement: base_config_1.TYPE_VALUE,
|
|
499
|
+
HTMLDocument: base_config_1.TYPE_VALUE,
|
|
500
|
+
HTMLElementEventMap: base_config_1.TYPE,
|
|
501
|
+
HTMLElement: base_config_1.TYPE_VALUE,
|
|
502
|
+
HTMLEmbedElement: base_config_1.TYPE_VALUE,
|
|
503
|
+
HTMLFieldSetElement: base_config_1.TYPE_VALUE,
|
|
504
|
+
HTMLFontElement: base_config_1.TYPE_VALUE,
|
|
505
|
+
HTMLFormControlsCollection: base_config_1.TYPE_VALUE,
|
|
506
|
+
HTMLFormElement: base_config_1.TYPE_VALUE,
|
|
507
|
+
HTMLFrameElement: base_config_1.TYPE_VALUE,
|
|
508
|
+
HTMLFrameSetElementEventMap: base_config_1.TYPE,
|
|
509
|
+
HTMLFrameSetElement: base_config_1.TYPE_VALUE,
|
|
510
|
+
HTMLHRElement: base_config_1.TYPE_VALUE,
|
|
511
|
+
HTMLHeadElement: base_config_1.TYPE_VALUE,
|
|
512
|
+
HTMLHeadingElement: base_config_1.TYPE_VALUE,
|
|
513
|
+
HTMLHtmlElement: base_config_1.TYPE_VALUE,
|
|
514
|
+
HTMLHyperlinkElementUtils: base_config_1.TYPE,
|
|
515
|
+
HTMLIFrameElement: base_config_1.TYPE_VALUE,
|
|
516
|
+
HTMLImageElement: base_config_1.TYPE_VALUE,
|
|
517
|
+
HTMLInputElement: base_config_1.TYPE_VALUE,
|
|
518
|
+
HTMLLIElement: base_config_1.TYPE_VALUE,
|
|
519
|
+
HTMLLabelElement: base_config_1.TYPE_VALUE,
|
|
520
|
+
HTMLLegendElement: base_config_1.TYPE_VALUE,
|
|
521
|
+
HTMLLinkElement: base_config_1.TYPE_VALUE,
|
|
522
|
+
HTMLMapElement: base_config_1.TYPE_VALUE,
|
|
523
|
+
HTMLMarqueeElement: base_config_1.TYPE_VALUE,
|
|
524
|
+
HTMLMediaElementEventMap: base_config_1.TYPE,
|
|
525
|
+
HTMLMediaElement: base_config_1.TYPE_VALUE,
|
|
526
|
+
HTMLMenuElement: base_config_1.TYPE_VALUE,
|
|
527
|
+
HTMLMetaElement: base_config_1.TYPE_VALUE,
|
|
528
|
+
HTMLMeterElement: base_config_1.TYPE_VALUE,
|
|
529
|
+
HTMLModElement: base_config_1.TYPE_VALUE,
|
|
530
|
+
HTMLOListElement: base_config_1.TYPE_VALUE,
|
|
531
|
+
HTMLObjectElement: base_config_1.TYPE_VALUE,
|
|
532
|
+
HTMLOptGroupElement: base_config_1.TYPE_VALUE,
|
|
533
|
+
HTMLOptionElement: base_config_1.TYPE_VALUE,
|
|
534
|
+
HTMLOptionsCollection: base_config_1.TYPE_VALUE,
|
|
535
|
+
HTMLOrSVGElement: base_config_1.TYPE,
|
|
536
|
+
HTMLOutputElement: base_config_1.TYPE_VALUE,
|
|
537
|
+
HTMLParagraphElement: base_config_1.TYPE_VALUE,
|
|
538
|
+
HTMLParamElement: base_config_1.TYPE_VALUE,
|
|
539
|
+
HTMLPictureElement: base_config_1.TYPE_VALUE,
|
|
540
|
+
HTMLPreElement: base_config_1.TYPE_VALUE,
|
|
541
|
+
HTMLProgressElement: base_config_1.TYPE_VALUE,
|
|
542
|
+
HTMLQuoteElement: base_config_1.TYPE_VALUE,
|
|
543
|
+
HTMLScriptElement: base_config_1.TYPE_VALUE,
|
|
544
|
+
HTMLSelectElement: base_config_1.TYPE_VALUE,
|
|
545
|
+
HTMLSlotElement: base_config_1.TYPE_VALUE,
|
|
546
|
+
HTMLSourceElement: base_config_1.TYPE_VALUE,
|
|
547
|
+
HTMLSpanElement: base_config_1.TYPE_VALUE,
|
|
548
|
+
HTMLStyleElement: base_config_1.TYPE_VALUE,
|
|
549
|
+
HTMLTableCaptionElement: base_config_1.TYPE_VALUE,
|
|
550
|
+
HTMLTableCellElement: base_config_1.TYPE_VALUE,
|
|
551
|
+
HTMLTableColElement: base_config_1.TYPE_VALUE,
|
|
552
|
+
HTMLTableDataCellElement: base_config_1.TYPE,
|
|
553
|
+
HTMLTableElement: base_config_1.TYPE_VALUE,
|
|
554
|
+
HTMLTableHeaderCellElement: base_config_1.TYPE,
|
|
555
|
+
HTMLTableRowElement: base_config_1.TYPE_VALUE,
|
|
556
|
+
HTMLTableSectionElement: base_config_1.TYPE_VALUE,
|
|
557
|
+
HTMLTemplateElement: base_config_1.TYPE_VALUE,
|
|
558
|
+
HTMLTextAreaElement: base_config_1.TYPE_VALUE,
|
|
559
|
+
HTMLTimeElement: base_config_1.TYPE_VALUE,
|
|
560
|
+
HTMLTitleElement: base_config_1.TYPE_VALUE,
|
|
561
|
+
HTMLTrackElement: base_config_1.TYPE_VALUE,
|
|
562
|
+
HTMLUListElement: base_config_1.TYPE_VALUE,
|
|
563
|
+
HTMLUnknownElement: base_config_1.TYPE_VALUE,
|
|
564
|
+
HTMLVideoElementEventMap: base_config_1.TYPE,
|
|
565
|
+
HTMLVideoElement: base_config_1.TYPE_VALUE,
|
|
566
|
+
HashChangeEvent: base_config_1.TYPE_VALUE,
|
|
567
|
+
Headers: base_config_1.TYPE_VALUE,
|
|
568
|
+
History: base_config_1.TYPE_VALUE,
|
|
569
|
+
IDBCursor: base_config_1.TYPE_VALUE,
|
|
570
|
+
IDBCursorWithValue: base_config_1.TYPE_VALUE,
|
|
571
|
+
IDBDatabaseEventMap: base_config_1.TYPE,
|
|
572
|
+
IDBDatabase: base_config_1.TYPE_VALUE,
|
|
573
|
+
IDBFactory: base_config_1.TYPE_VALUE,
|
|
574
|
+
IDBIndex: base_config_1.TYPE_VALUE,
|
|
575
|
+
IDBKeyRange: base_config_1.TYPE_VALUE,
|
|
576
|
+
IDBObjectStore: base_config_1.TYPE_VALUE,
|
|
577
|
+
IDBOpenDBRequestEventMap: base_config_1.TYPE,
|
|
578
|
+
IDBOpenDBRequest: base_config_1.TYPE_VALUE,
|
|
579
|
+
IDBRequestEventMap: base_config_1.TYPE,
|
|
580
|
+
IDBRequest: base_config_1.TYPE_VALUE,
|
|
581
|
+
IDBTransactionEventMap: base_config_1.TYPE,
|
|
582
|
+
IDBTransaction: base_config_1.TYPE_VALUE,
|
|
583
|
+
IDBVersionChangeEvent: base_config_1.TYPE_VALUE,
|
|
584
|
+
IIRFilterNode: base_config_1.TYPE_VALUE,
|
|
585
|
+
IdleDeadline: base_config_1.TYPE_VALUE,
|
|
586
|
+
ImageBitmap: base_config_1.TYPE_VALUE,
|
|
587
|
+
ImageBitmapRenderingContext: base_config_1.TYPE_VALUE,
|
|
588
|
+
ImageData: base_config_1.TYPE_VALUE,
|
|
589
|
+
InnerHTML: base_config_1.TYPE,
|
|
590
|
+
InputEvent: base_config_1.TYPE_VALUE,
|
|
591
|
+
IntersectionObserver: base_config_1.TYPE_VALUE,
|
|
592
|
+
IntersectionObserverEntry: base_config_1.TYPE_VALUE,
|
|
593
|
+
KHR_parallel_shader_compile: base_config_1.TYPE,
|
|
594
|
+
KeyboardEvent: base_config_1.TYPE_VALUE,
|
|
595
|
+
KeyframeEffect: base_config_1.TYPE_VALUE,
|
|
596
|
+
LinkStyle: base_config_1.TYPE,
|
|
597
|
+
Location: base_config_1.TYPE_VALUE,
|
|
598
|
+
MathMLElementEventMap: base_config_1.TYPE,
|
|
599
|
+
MathMLElement: base_config_1.TYPE_VALUE,
|
|
600
|
+
MediaCapabilities: base_config_1.TYPE_VALUE,
|
|
601
|
+
MediaDeviceInfo: base_config_1.TYPE_VALUE,
|
|
602
|
+
MediaDevicesEventMap: base_config_1.TYPE,
|
|
603
|
+
MediaDevices: base_config_1.TYPE_VALUE,
|
|
604
|
+
MediaElementAudioSourceNode: base_config_1.TYPE_VALUE,
|
|
605
|
+
MediaEncryptedEvent: base_config_1.TYPE_VALUE,
|
|
606
|
+
MediaError: base_config_1.TYPE_VALUE,
|
|
607
|
+
MediaKeyMessageEvent: base_config_1.TYPE_VALUE,
|
|
608
|
+
MediaKeySessionEventMap: base_config_1.TYPE,
|
|
609
|
+
MediaKeySession: base_config_1.TYPE_VALUE,
|
|
610
|
+
MediaKeyStatusMap: base_config_1.TYPE_VALUE,
|
|
611
|
+
MediaKeySystemAccess: base_config_1.TYPE_VALUE,
|
|
612
|
+
MediaKeys: base_config_1.TYPE_VALUE,
|
|
613
|
+
MediaList: base_config_1.TYPE_VALUE,
|
|
614
|
+
MediaMetadata: base_config_1.TYPE_VALUE,
|
|
615
|
+
MediaQueryListEventMap: base_config_1.TYPE,
|
|
616
|
+
MediaQueryList: base_config_1.TYPE_VALUE,
|
|
617
|
+
MediaQueryListEvent: base_config_1.TYPE_VALUE,
|
|
618
|
+
MediaRecorderEventMap: base_config_1.TYPE,
|
|
619
|
+
MediaRecorder: base_config_1.TYPE_VALUE,
|
|
620
|
+
MediaRecorderErrorEvent: base_config_1.TYPE_VALUE,
|
|
621
|
+
MediaSession: base_config_1.TYPE_VALUE,
|
|
622
|
+
MediaSourceEventMap: base_config_1.TYPE,
|
|
623
|
+
MediaSource: base_config_1.TYPE_VALUE,
|
|
624
|
+
MediaStreamEventMap: base_config_1.TYPE,
|
|
625
|
+
MediaStream: base_config_1.TYPE_VALUE,
|
|
626
|
+
MediaStreamAudioDestinationNode: base_config_1.TYPE_VALUE,
|
|
627
|
+
MediaStreamAudioSourceNode: base_config_1.TYPE_VALUE,
|
|
628
|
+
MediaStreamTrackEventMap: base_config_1.TYPE,
|
|
629
|
+
MediaStreamTrack: base_config_1.TYPE_VALUE,
|
|
630
|
+
MediaStreamTrackEvent: base_config_1.TYPE_VALUE,
|
|
631
|
+
MessageChannel: base_config_1.TYPE_VALUE,
|
|
632
|
+
MessageEvent: base_config_1.TYPE_VALUE,
|
|
633
|
+
MessagePortEventMap: base_config_1.TYPE,
|
|
634
|
+
MessagePort: base_config_1.TYPE_VALUE,
|
|
635
|
+
MimeType: base_config_1.TYPE_VALUE,
|
|
636
|
+
MimeTypeArray: base_config_1.TYPE_VALUE,
|
|
637
|
+
MouseEvent: base_config_1.TYPE_VALUE,
|
|
638
|
+
MutationEvent: base_config_1.TYPE_VALUE,
|
|
639
|
+
MutationObserver: base_config_1.TYPE_VALUE,
|
|
640
|
+
MutationRecord: base_config_1.TYPE_VALUE,
|
|
641
|
+
NamedNodeMap: base_config_1.TYPE_VALUE,
|
|
642
|
+
Navigator: base_config_1.TYPE_VALUE,
|
|
643
|
+
NavigatorAutomationInformation: base_config_1.TYPE,
|
|
644
|
+
NavigatorConcurrentHardware: base_config_1.TYPE,
|
|
645
|
+
NavigatorContentUtils: base_config_1.TYPE,
|
|
646
|
+
NavigatorCookies: base_config_1.TYPE,
|
|
647
|
+
NavigatorID: base_config_1.TYPE,
|
|
648
|
+
NavigatorLanguage: base_config_1.TYPE,
|
|
649
|
+
NavigatorNetworkInformation: base_config_1.TYPE,
|
|
650
|
+
NavigatorOnLine: base_config_1.TYPE,
|
|
651
|
+
NavigatorPlugins: base_config_1.TYPE,
|
|
652
|
+
NavigatorStorage: base_config_1.TYPE,
|
|
653
|
+
NetworkInformation: base_config_1.TYPE_VALUE,
|
|
654
|
+
Node: base_config_1.TYPE_VALUE,
|
|
655
|
+
NodeIterator: base_config_1.TYPE_VALUE,
|
|
656
|
+
NodeList: base_config_1.TYPE_VALUE,
|
|
657
|
+
NodeListOf: base_config_1.TYPE,
|
|
658
|
+
NonDocumentTypeChildNode: base_config_1.TYPE,
|
|
659
|
+
NonElementParentNode: base_config_1.TYPE,
|
|
660
|
+
NotificationEventMap: base_config_1.TYPE,
|
|
661
|
+
Notification: base_config_1.TYPE_VALUE,
|
|
662
|
+
OES_element_index_uint: base_config_1.TYPE,
|
|
663
|
+
OES_fbo_render_mipmap: base_config_1.TYPE,
|
|
664
|
+
OES_standard_derivatives: base_config_1.TYPE,
|
|
665
|
+
OES_texture_float: base_config_1.TYPE,
|
|
666
|
+
OES_texture_float_linear: base_config_1.TYPE,
|
|
667
|
+
OES_texture_half_float: base_config_1.TYPE,
|
|
668
|
+
OES_texture_half_float_linear: base_config_1.TYPE,
|
|
669
|
+
OES_vertex_array_object: base_config_1.TYPE,
|
|
670
|
+
OVR_multiview2: base_config_1.TYPE,
|
|
671
|
+
OfflineAudioCompletionEvent: base_config_1.TYPE_VALUE,
|
|
672
|
+
OfflineAudioContextEventMap: base_config_1.TYPE,
|
|
673
|
+
OfflineAudioContext: base_config_1.TYPE_VALUE,
|
|
674
|
+
OscillatorNode: base_config_1.TYPE_VALUE,
|
|
675
|
+
OverconstrainedError: base_config_1.TYPE_VALUE,
|
|
676
|
+
PageTransitionEvent: base_config_1.TYPE_VALUE,
|
|
677
|
+
PannerNode: base_config_1.TYPE_VALUE,
|
|
678
|
+
ParentNode: base_config_1.TYPE,
|
|
679
|
+
Path2D: base_config_1.TYPE_VALUE,
|
|
680
|
+
PaymentMethodChangeEvent: base_config_1.TYPE_VALUE,
|
|
681
|
+
PaymentRequestEventMap: base_config_1.TYPE,
|
|
682
|
+
PaymentRequest: base_config_1.TYPE_VALUE,
|
|
683
|
+
PaymentRequestUpdateEvent: base_config_1.TYPE_VALUE,
|
|
684
|
+
PaymentResponse: base_config_1.TYPE_VALUE,
|
|
685
|
+
PerformanceEventMap: base_config_1.TYPE,
|
|
686
|
+
Performance: base_config_1.TYPE_VALUE,
|
|
687
|
+
PerformanceEntry: base_config_1.TYPE_VALUE,
|
|
688
|
+
PerformanceEventTiming: base_config_1.TYPE_VALUE,
|
|
689
|
+
PerformanceMark: base_config_1.TYPE_VALUE,
|
|
690
|
+
PerformanceMeasure: base_config_1.TYPE_VALUE,
|
|
691
|
+
PerformanceNavigation: base_config_1.TYPE_VALUE,
|
|
692
|
+
PerformanceNavigationTiming: base_config_1.TYPE_VALUE,
|
|
693
|
+
PerformanceObserver: base_config_1.TYPE_VALUE,
|
|
694
|
+
PerformanceObserverEntryList: base_config_1.TYPE_VALUE,
|
|
695
|
+
PerformancePaintTiming: base_config_1.TYPE_VALUE,
|
|
696
|
+
PerformanceResourceTiming: base_config_1.TYPE_VALUE,
|
|
697
|
+
PerformanceServerTiming: base_config_1.TYPE_VALUE,
|
|
698
|
+
PerformanceTiming: base_config_1.TYPE_VALUE,
|
|
699
|
+
PeriodicWave: base_config_1.TYPE_VALUE,
|
|
700
|
+
PermissionStatusEventMap: base_config_1.TYPE,
|
|
701
|
+
PermissionStatus: base_config_1.TYPE_VALUE,
|
|
702
|
+
Permissions: base_config_1.TYPE_VALUE,
|
|
703
|
+
PictureInPictureWindowEventMap: base_config_1.TYPE,
|
|
704
|
+
PictureInPictureWindow: base_config_1.TYPE_VALUE,
|
|
705
|
+
Plugin: base_config_1.TYPE_VALUE,
|
|
706
|
+
PluginArray: base_config_1.TYPE_VALUE,
|
|
707
|
+
PointerEvent: base_config_1.TYPE_VALUE,
|
|
708
|
+
PopStateEvent: base_config_1.TYPE_VALUE,
|
|
709
|
+
ProcessingInstruction: base_config_1.TYPE_VALUE,
|
|
710
|
+
ProgressEvent: base_config_1.TYPE_VALUE,
|
|
711
|
+
PromiseRejectionEvent: base_config_1.TYPE_VALUE,
|
|
712
|
+
PublicKeyCredential: base_config_1.TYPE_VALUE,
|
|
713
|
+
PushManager: base_config_1.TYPE_VALUE,
|
|
714
|
+
PushSubscription: base_config_1.TYPE_VALUE,
|
|
715
|
+
PushSubscriptionOptions: base_config_1.TYPE_VALUE,
|
|
716
|
+
RTCCertificate: base_config_1.TYPE_VALUE,
|
|
717
|
+
RTCDTMFSenderEventMap: base_config_1.TYPE,
|
|
718
|
+
RTCDTMFSender: base_config_1.TYPE_VALUE,
|
|
719
|
+
RTCDTMFToneChangeEvent: base_config_1.TYPE_VALUE,
|
|
720
|
+
RTCDataChannelEventMap: base_config_1.TYPE,
|
|
721
|
+
RTCDataChannel: base_config_1.TYPE_VALUE,
|
|
722
|
+
RTCDataChannelEvent: base_config_1.TYPE_VALUE,
|
|
723
|
+
RTCDtlsTransportEventMap: base_config_1.TYPE,
|
|
724
|
+
RTCDtlsTransport: base_config_1.TYPE_VALUE,
|
|
725
|
+
RTCIceCandidate: base_config_1.TYPE_VALUE,
|
|
726
|
+
RTCIceTransport: base_config_1.TYPE_VALUE,
|
|
727
|
+
RTCPeerConnectionEventMap: base_config_1.TYPE,
|
|
728
|
+
RTCPeerConnection: base_config_1.TYPE_VALUE,
|
|
729
|
+
RTCPeerConnectionIceErrorEvent: base_config_1.TYPE_VALUE,
|
|
730
|
+
RTCPeerConnectionIceEvent: base_config_1.TYPE_VALUE,
|
|
731
|
+
RTCRtpReceiver: base_config_1.TYPE_VALUE,
|
|
732
|
+
RTCRtpSender: base_config_1.TYPE_VALUE,
|
|
733
|
+
RTCRtpTransceiver: base_config_1.TYPE_VALUE,
|
|
734
|
+
RTCSessionDescription: base_config_1.TYPE_VALUE,
|
|
735
|
+
RTCStatsReport: base_config_1.TYPE_VALUE,
|
|
736
|
+
RTCTrackEvent: base_config_1.TYPE_VALUE,
|
|
737
|
+
RadioNodeList: base_config_1.TYPE_VALUE,
|
|
738
|
+
Range: base_config_1.TYPE_VALUE,
|
|
739
|
+
ReadableStream: base_config_1.TYPE_VALUE,
|
|
740
|
+
ReadableStreamDefaultController: base_config_1.TYPE_VALUE,
|
|
741
|
+
ReadableStreamDefaultReader: base_config_1.TYPE_VALUE,
|
|
742
|
+
ReadableStreamGenericReader: base_config_1.TYPE,
|
|
743
|
+
RemotePlaybackEventMap: base_config_1.TYPE,
|
|
744
|
+
RemotePlayback: base_config_1.TYPE_VALUE,
|
|
745
|
+
Request: base_config_1.TYPE_VALUE,
|
|
746
|
+
ResizeObserver: base_config_1.TYPE_VALUE,
|
|
747
|
+
ResizeObserverEntry: base_config_1.TYPE_VALUE,
|
|
748
|
+
ResizeObserverSize: base_config_1.TYPE_VALUE,
|
|
749
|
+
Response: base_config_1.TYPE_VALUE,
|
|
750
|
+
SVGAElement: base_config_1.TYPE_VALUE,
|
|
751
|
+
SVGAngle: base_config_1.TYPE_VALUE,
|
|
752
|
+
SVGAnimateElement: base_config_1.TYPE_VALUE,
|
|
753
|
+
SVGAnimateMotionElement: base_config_1.TYPE_VALUE,
|
|
754
|
+
SVGAnimateTransformElement: base_config_1.TYPE_VALUE,
|
|
755
|
+
SVGAnimatedAngle: base_config_1.TYPE_VALUE,
|
|
756
|
+
SVGAnimatedBoolean: base_config_1.TYPE_VALUE,
|
|
757
|
+
SVGAnimatedEnumeration: base_config_1.TYPE_VALUE,
|
|
758
|
+
SVGAnimatedInteger: base_config_1.TYPE_VALUE,
|
|
759
|
+
SVGAnimatedLength: base_config_1.TYPE_VALUE,
|
|
760
|
+
SVGAnimatedLengthList: base_config_1.TYPE_VALUE,
|
|
761
|
+
SVGAnimatedNumber: base_config_1.TYPE_VALUE,
|
|
762
|
+
SVGAnimatedNumberList: base_config_1.TYPE_VALUE,
|
|
763
|
+
SVGAnimatedPoints: base_config_1.TYPE,
|
|
764
|
+
SVGAnimatedPreserveAspectRatio: base_config_1.TYPE_VALUE,
|
|
765
|
+
SVGAnimatedRect: base_config_1.TYPE_VALUE,
|
|
766
|
+
SVGAnimatedString: base_config_1.TYPE_VALUE,
|
|
767
|
+
SVGAnimatedTransformList: base_config_1.TYPE_VALUE,
|
|
768
|
+
SVGAnimationElement: base_config_1.TYPE_VALUE,
|
|
769
|
+
SVGCircleElement: base_config_1.TYPE_VALUE,
|
|
770
|
+
SVGClipPathElement: base_config_1.TYPE_VALUE,
|
|
771
|
+
SVGComponentTransferFunctionElement: base_config_1.TYPE_VALUE,
|
|
772
|
+
SVGDefsElement: base_config_1.TYPE_VALUE,
|
|
773
|
+
SVGDescElement: base_config_1.TYPE_VALUE,
|
|
774
|
+
SVGElementEventMap: base_config_1.TYPE,
|
|
775
|
+
SVGElement: base_config_1.TYPE_VALUE,
|
|
776
|
+
SVGEllipseElement: base_config_1.TYPE_VALUE,
|
|
777
|
+
SVGFEBlendElement: base_config_1.TYPE_VALUE,
|
|
778
|
+
SVGFEColorMatrixElement: base_config_1.TYPE_VALUE,
|
|
779
|
+
SVGFEComponentTransferElement: base_config_1.TYPE_VALUE,
|
|
780
|
+
SVGFECompositeElement: base_config_1.TYPE_VALUE,
|
|
781
|
+
SVGFEConvolveMatrixElement: base_config_1.TYPE_VALUE,
|
|
782
|
+
SVGFEDiffuseLightingElement: base_config_1.TYPE_VALUE,
|
|
783
|
+
SVGFEDisplacementMapElement: base_config_1.TYPE_VALUE,
|
|
784
|
+
SVGFEDistantLightElement: base_config_1.TYPE_VALUE,
|
|
785
|
+
SVGFEDropShadowElement: base_config_1.TYPE_VALUE,
|
|
786
|
+
SVGFEFloodElement: base_config_1.TYPE_VALUE,
|
|
787
|
+
SVGFEFuncAElement: base_config_1.TYPE_VALUE,
|
|
788
|
+
SVGFEFuncBElement: base_config_1.TYPE_VALUE,
|
|
789
|
+
SVGFEFuncGElement: base_config_1.TYPE_VALUE,
|
|
790
|
+
SVGFEFuncRElement: base_config_1.TYPE_VALUE,
|
|
791
|
+
SVGFEGaussianBlurElement: base_config_1.TYPE_VALUE,
|
|
792
|
+
SVGFEImageElement: base_config_1.TYPE_VALUE,
|
|
793
|
+
SVGFEMergeElement: base_config_1.TYPE_VALUE,
|
|
794
|
+
SVGFEMergeNodeElement: base_config_1.TYPE_VALUE,
|
|
795
|
+
SVGFEMorphologyElement: base_config_1.TYPE_VALUE,
|
|
796
|
+
SVGFEOffsetElement: base_config_1.TYPE_VALUE,
|
|
797
|
+
SVGFEPointLightElement: base_config_1.TYPE_VALUE,
|
|
798
|
+
SVGFESpecularLightingElement: base_config_1.TYPE_VALUE,
|
|
799
|
+
SVGFESpotLightElement: base_config_1.TYPE_VALUE,
|
|
800
|
+
SVGFETileElement: base_config_1.TYPE_VALUE,
|
|
801
|
+
SVGFETurbulenceElement: base_config_1.TYPE_VALUE,
|
|
802
|
+
SVGFilterElement: base_config_1.TYPE_VALUE,
|
|
803
|
+
SVGFilterPrimitiveStandardAttributes: base_config_1.TYPE,
|
|
804
|
+
SVGFitToViewBox: base_config_1.TYPE,
|
|
805
|
+
SVGForeignObjectElement: base_config_1.TYPE_VALUE,
|
|
806
|
+
SVGGElement: base_config_1.TYPE_VALUE,
|
|
807
|
+
SVGGeometryElement: base_config_1.TYPE_VALUE,
|
|
808
|
+
SVGGradientElement: base_config_1.TYPE_VALUE,
|
|
809
|
+
SVGGraphicsElement: base_config_1.TYPE_VALUE,
|
|
810
|
+
SVGImageElement: base_config_1.TYPE_VALUE,
|
|
811
|
+
SVGLength: base_config_1.TYPE_VALUE,
|
|
812
|
+
SVGLengthList: base_config_1.TYPE_VALUE,
|
|
813
|
+
SVGLineElement: base_config_1.TYPE_VALUE,
|
|
814
|
+
SVGLinearGradientElement: base_config_1.TYPE_VALUE,
|
|
815
|
+
SVGMPathElement: base_config_1.TYPE_VALUE,
|
|
816
|
+
SVGMarkerElement: base_config_1.TYPE_VALUE,
|
|
817
|
+
SVGMaskElement: base_config_1.TYPE_VALUE,
|
|
818
|
+
SVGMetadataElement: base_config_1.TYPE_VALUE,
|
|
819
|
+
SVGNumber: base_config_1.TYPE_VALUE,
|
|
820
|
+
SVGNumberList: base_config_1.TYPE_VALUE,
|
|
821
|
+
SVGPathElement: base_config_1.TYPE_VALUE,
|
|
822
|
+
SVGPatternElement: base_config_1.TYPE_VALUE,
|
|
823
|
+
SVGPointList: base_config_1.TYPE_VALUE,
|
|
824
|
+
SVGPolygonElement: base_config_1.TYPE_VALUE,
|
|
825
|
+
SVGPolylineElement: base_config_1.TYPE_VALUE,
|
|
826
|
+
SVGPreserveAspectRatio: base_config_1.TYPE_VALUE,
|
|
827
|
+
SVGRadialGradientElement: base_config_1.TYPE_VALUE,
|
|
828
|
+
SVGRectElement: base_config_1.TYPE_VALUE,
|
|
829
|
+
SVGSVGElementEventMap: base_config_1.TYPE,
|
|
830
|
+
SVGSVGElement: base_config_1.TYPE_VALUE,
|
|
831
|
+
SVGScriptElement: base_config_1.TYPE_VALUE,
|
|
832
|
+
SVGSetElement: base_config_1.TYPE_VALUE,
|
|
833
|
+
SVGStopElement: base_config_1.TYPE_VALUE,
|
|
834
|
+
SVGStringList: base_config_1.TYPE_VALUE,
|
|
835
|
+
SVGStyleElement: base_config_1.TYPE_VALUE,
|
|
836
|
+
SVGSwitchElement: base_config_1.TYPE_VALUE,
|
|
837
|
+
SVGSymbolElement: base_config_1.TYPE_VALUE,
|
|
838
|
+
SVGTSpanElement: base_config_1.TYPE_VALUE,
|
|
839
|
+
SVGTests: base_config_1.TYPE,
|
|
840
|
+
SVGTextContentElement: base_config_1.TYPE_VALUE,
|
|
841
|
+
SVGTextElement: base_config_1.TYPE_VALUE,
|
|
842
|
+
SVGTextPathElement: base_config_1.TYPE_VALUE,
|
|
843
|
+
SVGTextPositioningElement: base_config_1.TYPE_VALUE,
|
|
844
|
+
SVGTitleElement: base_config_1.TYPE_VALUE,
|
|
845
|
+
SVGTransform: base_config_1.TYPE_VALUE,
|
|
846
|
+
SVGTransformList: base_config_1.TYPE_VALUE,
|
|
847
|
+
SVGURIReference: base_config_1.TYPE,
|
|
848
|
+
SVGUnitTypes: base_config_1.TYPE_VALUE,
|
|
849
|
+
SVGUseElement: base_config_1.TYPE_VALUE,
|
|
850
|
+
SVGViewElement: base_config_1.TYPE_VALUE,
|
|
851
|
+
Screen: base_config_1.TYPE_VALUE,
|
|
852
|
+
ScreenOrientationEventMap: base_config_1.TYPE,
|
|
853
|
+
ScreenOrientation: base_config_1.TYPE_VALUE,
|
|
854
|
+
ScriptProcessorNodeEventMap: base_config_1.TYPE,
|
|
855
|
+
ScriptProcessorNode: base_config_1.TYPE_VALUE,
|
|
856
|
+
SecurityPolicyViolationEvent: base_config_1.TYPE_VALUE,
|
|
857
|
+
Selection: base_config_1.TYPE_VALUE,
|
|
858
|
+
ServiceWorkerEventMap: base_config_1.TYPE,
|
|
859
|
+
ServiceWorker: base_config_1.TYPE_VALUE,
|
|
860
|
+
ServiceWorkerContainerEventMap: base_config_1.TYPE,
|
|
861
|
+
ServiceWorkerContainer: base_config_1.TYPE_VALUE,
|
|
862
|
+
ServiceWorkerRegistrationEventMap: base_config_1.TYPE,
|
|
863
|
+
ServiceWorkerRegistration: base_config_1.TYPE_VALUE,
|
|
864
|
+
ShadowRoot: base_config_1.TYPE_VALUE,
|
|
865
|
+
SharedWorker: base_config_1.TYPE_VALUE,
|
|
866
|
+
Slottable: base_config_1.TYPE,
|
|
867
|
+
SourceBufferEventMap: base_config_1.TYPE,
|
|
868
|
+
SourceBuffer: base_config_1.TYPE_VALUE,
|
|
869
|
+
SourceBufferListEventMap: base_config_1.TYPE,
|
|
870
|
+
SourceBufferList: base_config_1.TYPE_VALUE,
|
|
871
|
+
SpeechRecognitionAlternative: base_config_1.TYPE_VALUE,
|
|
872
|
+
SpeechRecognitionResult: base_config_1.TYPE_VALUE,
|
|
873
|
+
SpeechRecognitionResultList: base_config_1.TYPE_VALUE,
|
|
874
|
+
SpeechSynthesisEventMap: base_config_1.TYPE,
|
|
875
|
+
SpeechSynthesis: base_config_1.TYPE_VALUE,
|
|
876
|
+
SpeechSynthesisErrorEvent: base_config_1.TYPE_VALUE,
|
|
877
|
+
SpeechSynthesisEvent: base_config_1.TYPE_VALUE,
|
|
878
|
+
SpeechSynthesisUtteranceEventMap: base_config_1.TYPE,
|
|
879
|
+
SpeechSynthesisUtterance: base_config_1.TYPE_VALUE,
|
|
880
|
+
SpeechSynthesisVoice: base_config_1.TYPE_VALUE,
|
|
881
|
+
StaticRange: base_config_1.TYPE_VALUE,
|
|
882
|
+
StereoPannerNode: base_config_1.TYPE_VALUE,
|
|
883
|
+
Storage: base_config_1.TYPE_VALUE,
|
|
884
|
+
StorageEvent: base_config_1.TYPE_VALUE,
|
|
885
|
+
StorageManager: base_config_1.TYPE_VALUE,
|
|
886
|
+
StyleMedia: base_config_1.TYPE,
|
|
887
|
+
StyleSheet: base_config_1.TYPE_VALUE,
|
|
888
|
+
StyleSheetList: base_config_1.TYPE_VALUE,
|
|
889
|
+
SubmitEvent: base_config_1.TYPE_VALUE,
|
|
890
|
+
SubtleCrypto: base_config_1.TYPE_VALUE,
|
|
891
|
+
Text: base_config_1.TYPE_VALUE,
|
|
892
|
+
TextDecoder: base_config_1.TYPE_VALUE,
|
|
893
|
+
TextDecoderCommon: base_config_1.TYPE,
|
|
894
|
+
TextDecoderStream: base_config_1.TYPE_VALUE,
|
|
895
|
+
TextEncoder: base_config_1.TYPE_VALUE,
|
|
896
|
+
TextEncoderCommon: base_config_1.TYPE,
|
|
897
|
+
TextEncoderStream: base_config_1.TYPE_VALUE,
|
|
898
|
+
TextMetrics: base_config_1.TYPE_VALUE,
|
|
899
|
+
TextTrackEventMap: base_config_1.TYPE,
|
|
900
|
+
TextTrack: base_config_1.TYPE_VALUE,
|
|
901
|
+
TextTrackCueEventMap: base_config_1.TYPE,
|
|
902
|
+
TextTrackCue: base_config_1.TYPE_VALUE,
|
|
903
|
+
TextTrackCueList: base_config_1.TYPE_VALUE,
|
|
904
|
+
TextTrackListEventMap: base_config_1.TYPE,
|
|
905
|
+
TextTrackList: base_config_1.TYPE_VALUE,
|
|
906
|
+
TimeRanges: base_config_1.TYPE_VALUE,
|
|
907
|
+
Touch: base_config_1.TYPE_VALUE,
|
|
908
|
+
TouchEvent: base_config_1.TYPE_VALUE,
|
|
909
|
+
TouchList: base_config_1.TYPE_VALUE,
|
|
910
|
+
TrackEvent: base_config_1.TYPE_VALUE,
|
|
911
|
+
TransformStream: base_config_1.TYPE_VALUE,
|
|
912
|
+
TransformStreamDefaultController: base_config_1.TYPE_VALUE,
|
|
913
|
+
TransitionEvent: base_config_1.TYPE_VALUE,
|
|
914
|
+
TreeWalker: base_config_1.TYPE_VALUE,
|
|
915
|
+
UIEvent: base_config_1.TYPE_VALUE,
|
|
916
|
+
URL: base_config_1.TYPE_VALUE,
|
|
917
|
+
webkitURL: base_config_1.TYPE_VALUE,
|
|
918
|
+
URLSearchParams: base_config_1.TYPE_VALUE,
|
|
919
|
+
VTTCue: base_config_1.TYPE_VALUE,
|
|
920
|
+
VTTRegion: base_config_1.TYPE_VALUE,
|
|
921
|
+
ValidityState: base_config_1.TYPE_VALUE,
|
|
922
|
+
VideoPlaybackQuality: base_config_1.TYPE_VALUE,
|
|
923
|
+
VisualViewportEventMap: base_config_1.TYPE,
|
|
924
|
+
VisualViewport: base_config_1.TYPE_VALUE,
|
|
925
|
+
WEBGL_color_buffer_float: base_config_1.TYPE,
|
|
926
|
+
WEBGL_compressed_texture_astc: base_config_1.TYPE,
|
|
927
|
+
WEBGL_compressed_texture_etc: base_config_1.TYPE,
|
|
928
|
+
WEBGL_compressed_texture_etc1: base_config_1.TYPE,
|
|
929
|
+
WEBGL_compressed_texture_pvrtc: base_config_1.TYPE,
|
|
930
|
+
WEBGL_compressed_texture_s3tc: base_config_1.TYPE,
|
|
931
|
+
WEBGL_compressed_texture_s3tc_srgb: base_config_1.TYPE,
|
|
932
|
+
WEBGL_debug_renderer_info: base_config_1.TYPE,
|
|
933
|
+
WEBGL_debug_shaders: base_config_1.TYPE,
|
|
934
|
+
WEBGL_depth_texture: base_config_1.TYPE,
|
|
935
|
+
WEBGL_draw_buffers: base_config_1.TYPE,
|
|
936
|
+
WEBGL_lose_context: base_config_1.TYPE,
|
|
937
|
+
WaveShaperNode: base_config_1.TYPE_VALUE,
|
|
938
|
+
WebGL2RenderingContext: base_config_1.TYPE_VALUE,
|
|
939
|
+
WebGL2RenderingContextBase: base_config_1.TYPE,
|
|
940
|
+
WebGL2RenderingContextOverloads: base_config_1.TYPE,
|
|
941
|
+
WebGLActiveInfo: base_config_1.TYPE_VALUE,
|
|
942
|
+
WebGLBuffer: base_config_1.TYPE_VALUE,
|
|
943
|
+
WebGLContextEvent: base_config_1.TYPE_VALUE,
|
|
944
|
+
WebGLFramebuffer: base_config_1.TYPE_VALUE,
|
|
945
|
+
WebGLProgram: base_config_1.TYPE_VALUE,
|
|
946
|
+
WebGLQuery: base_config_1.TYPE_VALUE,
|
|
947
|
+
WebGLRenderbuffer: base_config_1.TYPE_VALUE,
|
|
948
|
+
WebGLRenderingContext: base_config_1.TYPE_VALUE,
|
|
949
|
+
WebGLRenderingContextBase: base_config_1.TYPE,
|
|
950
|
+
WebGLRenderingContextOverloads: base_config_1.TYPE,
|
|
951
|
+
WebGLSampler: base_config_1.TYPE_VALUE,
|
|
952
|
+
WebGLShader: base_config_1.TYPE_VALUE,
|
|
953
|
+
WebGLShaderPrecisionFormat: base_config_1.TYPE_VALUE,
|
|
954
|
+
WebGLSync: base_config_1.TYPE_VALUE,
|
|
955
|
+
WebGLTexture: base_config_1.TYPE_VALUE,
|
|
956
|
+
WebGLTransformFeedback: base_config_1.TYPE_VALUE,
|
|
957
|
+
WebGLUniformLocation: base_config_1.TYPE_VALUE,
|
|
958
|
+
WebGLVertexArrayObject: base_config_1.TYPE_VALUE,
|
|
959
|
+
WebGLVertexArrayObjectOES: base_config_1.TYPE,
|
|
960
|
+
WebSocketEventMap: base_config_1.TYPE,
|
|
961
|
+
WebSocket: base_config_1.TYPE_VALUE,
|
|
962
|
+
WheelEvent: base_config_1.TYPE_VALUE,
|
|
963
|
+
WindowEventMap: base_config_1.TYPE,
|
|
964
|
+
Window: base_config_1.TYPE_VALUE,
|
|
965
|
+
WindowEventHandlersEventMap: base_config_1.TYPE,
|
|
966
|
+
WindowEventHandlers: base_config_1.TYPE,
|
|
967
|
+
WindowLocalStorage: base_config_1.TYPE,
|
|
968
|
+
WindowOrWorkerGlobalScope: base_config_1.TYPE,
|
|
969
|
+
WindowSessionStorage: base_config_1.TYPE,
|
|
970
|
+
WorkerEventMap: base_config_1.TYPE,
|
|
971
|
+
Worker: base_config_1.TYPE_VALUE,
|
|
972
|
+
Worklet: base_config_1.TYPE_VALUE,
|
|
973
|
+
WritableStream: base_config_1.TYPE_VALUE,
|
|
974
|
+
WritableStreamDefaultController: base_config_1.TYPE_VALUE,
|
|
975
|
+
WritableStreamDefaultWriter: base_config_1.TYPE_VALUE,
|
|
976
|
+
XMLDocument: base_config_1.TYPE_VALUE,
|
|
977
|
+
XMLHttpRequestEventMap: base_config_1.TYPE,
|
|
978
|
+
XMLHttpRequest: base_config_1.TYPE_VALUE,
|
|
979
|
+
XMLHttpRequestEventTargetEventMap: base_config_1.TYPE,
|
|
980
|
+
XMLHttpRequestEventTarget: base_config_1.TYPE_VALUE,
|
|
981
|
+
XMLHttpRequestUpload: base_config_1.TYPE_VALUE,
|
|
982
|
+
XMLSerializer: base_config_1.TYPE_VALUE,
|
|
983
|
+
XPathEvaluator: base_config_1.TYPE_VALUE,
|
|
984
|
+
XPathEvaluatorBase: base_config_1.TYPE,
|
|
985
|
+
XPathExpression: base_config_1.TYPE_VALUE,
|
|
986
|
+
XPathResult: base_config_1.TYPE_VALUE,
|
|
987
|
+
XSLTProcessor: base_config_1.TYPE_VALUE,
|
|
988
|
+
Console: base_config_1.TYPE,
|
|
989
|
+
CSS: base_config_1.TYPE_VALUE,
|
|
990
|
+
WebAssembly: base_config_1.TYPE_VALUE,
|
|
991
|
+
BlobCallback: base_config_1.TYPE,
|
|
992
|
+
CustomElementConstructor: base_config_1.TYPE,
|
|
993
|
+
DecodeErrorCallback: base_config_1.TYPE,
|
|
994
|
+
DecodeSuccessCallback: base_config_1.TYPE,
|
|
995
|
+
ErrorCallback: base_config_1.TYPE,
|
|
996
|
+
FileCallback: base_config_1.TYPE,
|
|
997
|
+
FileSystemEntriesCallback: base_config_1.TYPE,
|
|
998
|
+
FileSystemEntryCallback: base_config_1.TYPE,
|
|
999
|
+
FrameRequestCallback: base_config_1.TYPE,
|
|
1000
|
+
FunctionStringCallback: base_config_1.TYPE,
|
|
1001
|
+
IdleRequestCallback: base_config_1.TYPE,
|
|
1002
|
+
IntersectionObserverCallback: base_config_1.TYPE,
|
|
1003
|
+
MediaSessionActionHandler: base_config_1.TYPE,
|
|
1004
|
+
MutationCallback: base_config_1.TYPE,
|
|
1005
|
+
NotificationPermissionCallback: base_config_1.TYPE,
|
|
1006
|
+
OnBeforeUnloadEventHandlerNonNull: base_config_1.TYPE,
|
|
1007
|
+
OnErrorEventHandlerNonNull: base_config_1.TYPE,
|
|
1008
|
+
PerformanceObserverCallback: base_config_1.TYPE,
|
|
1009
|
+
PositionCallback: base_config_1.TYPE,
|
|
1010
|
+
PositionErrorCallback: base_config_1.TYPE,
|
|
1011
|
+
QueuingStrategySize: base_config_1.TYPE,
|
|
1012
|
+
RTCPeerConnectionErrorCallback: base_config_1.TYPE,
|
|
1013
|
+
RTCSessionDescriptionCallback: base_config_1.TYPE,
|
|
1014
|
+
RemotePlaybackAvailabilityCallback: base_config_1.TYPE,
|
|
1015
|
+
ResizeObserverCallback: base_config_1.TYPE,
|
|
1016
|
+
TransformerFlushCallback: base_config_1.TYPE,
|
|
1017
|
+
TransformerStartCallback: base_config_1.TYPE,
|
|
1018
|
+
TransformerTransformCallback: base_config_1.TYPE,
|
|
1019
|
+
UnderlyingSinkAbortCallback: base_config_1.TYPE,
|
|
1020
|
+
UnderlyingSinkCloseCallback: base_config_1.TYPE,
|
|
1021
|
+
UnderlyingSinkStartCallback: base_config_1.TYPE,
|
|
1022
|
+
UnderlyingSinkWriteCallback: base_config_1.TYPE,
|
|
1023
|
+
UnderlyingSourceCancelCallback: base_config_1.TYPE,
|
|
1024
|
+
UnderlyingSourcePullCallback: base_config_1.TYPE,
|
|
1025
|
+
UnderlyingSourceStartCallback: base_config_1.TYPE,
|
|
1026
|
+
VoidFunction: base_config_1.TYPE,
|
|
1027
|
+
HTMLElementTagNameMap: base_config_1.TYPE,
|
|
1028
|
+
HTMLElementDeprecatedTagNameMap: base_config_1.TYPE,
|
|
1029
|
+
SVGElementTagNameMap: base_config_1.TYPE,
|
|
1030
|
+
ElementTagNameMap: base_config_1.TYPE,
|
|
1031
|
+
AlgorithmIdentifier: base_config_1.TYPE,
|
|
1032
|
+
BigInteger: base_config_1.TYPE,
|
|
1033
|
+
BinaryData: base_config_1.TYPE,
|
|
1034
|
+
BlobPart: base_config_1.TYPE,
|
|
1035
|
+
BodyInit: base_config_1.TYPE,
|
|
1036
|
+
BufferSource: base_config_1.TYPE,
|
|
1037
|
+
COSEAlgorithmIdentifier: base_config_1.TYPE,
|
|
1038
|
+
CSSNumberish: base_config_1.TYPE,
|
|
1039
|
+
CanvasImageSource: base_config_1.TYPE,
|
|
1040
|
+
ClipboardItemData: base_config_1.TYPE,
|
|
1041
|
+
ClipboardItemDataType: base_config_1.TYPE,
|
|
1042
|
+
ClipboardItems: base_config_1.TYPE,
|
|
1043
|
+
ConstrainBoolean: base_config_1.TYPE,
|
|
1044
|
+
ConstrainDOMString: base_config_1.TYPE,
|
|
1045
|
+
ConstrainDouble: base_config_1.TYPE,
|
|
1046
|
+
ConstrainULong: base_config_1.TYPE,
|
|
1047
|
+
DOMHighResTimeStamp: base_config_1.TYPE,
|
|
1048
|
+
DOMTimeStamp: base_config_1.TYPE,
|
|
1049
|
+
EventListenerOrEventListenerObject: base_config_1.TYPE,
|
|
1050
|
+
Float32List: base_config_1.TYPE,
|
|
1051
|
+
FormDataEntryValue: base_config_1.TYPE,
|
|
1052
|
+
GLbitfield: base_config_1.TYPE,
|
|
1053
|
+
GLboolean: base_config_1.TYPE,
|
|
1054
|
+
GLclampf: base_config_1.TYPE,
|
|
1055
|
+
GLenum: base_config_1.TYPE,
|
|
1056
|
+
GLfloat: base_config_1.TYPE,
|
|
1057
|
+
GLint: base_config_1.TYPE,
|
|
1058
|
+
GLint64: base_config_1.TYPE,
|
|
1059
|
+
GLintptr: base_config_1.TYPE,
|
|
1060
|
+
GLsizei: base_config_1.TYPE,
|
|
1061
|
+
GLsizeiptr: base_config_1.TYPE,
|
|
1062
|
+
GLuint: base_config_1.TYPE,
|
|
1063
|
+
GLuint64: base_config_1.TYPE,
|
|
1064
|
+
HTMLOrSVGImageElement: base_config_1.TYPE,
|
|
1065
|
+
HTMLOrSVGScriptElement: base_config_1.TYPE,
|
|
1066
|
+
HashAlgorithmIdentifier: base_config_1.TYPE,
|
|
1067
|
+
HeadersInit: base_config_1.TYPE,
|
|
1068
|
+
IDBValidKey: base_config_1.TYPE,
|
|
1069
|
+
ImageBitmapSource: base_config_1.TYPE,
|
|
1070
|
+
InsertPosition: base_config_1.TYPE,
|
|
1071
|
+
Int32List: base_config_1.TYPE,
|
|
1072
|
+
LineAndPositionSetting: base_config_1.TYPE,
|
|
1073
|
+
MediaProvider: base_config_1.TYPE,
|
|
1074
|
+
MessageEventSource: base_config_1.TYPE,
|
|
1075
|
+
MutationRecordType: base_config_1.TYPE,
|
|
1076
|
+
NamedCurve: base_config_1.TYPE,
|
|
1077
|
+
OnBeforeUnloadEventHandler: base_config_1.TYPE,
|
|
1078
|
+
OnErrorEventHandler: base_config_1.TYPE,
|
|
1079
|
+
PerformanceEntryList: base_config_1.TYPE,
|
|
1080
|
+
ReadableStreamController: base_config_1.TYPE,
|
|
1081
|
+
ReadableStreamDefaultReadResult: base_config_1.TYPE,
|
|
1082
|
+
ReadableStreamReader: base_config_1.TYPE,
|
|
1083
|
+
RenderingContext: base_config_1.TYPE,
|
|
1084
|
+
RequestInfo: base_config_1.TYPE,
|
|
1085
|
+
TexImageSource: base_config_1.TYPE,
|
|
1086
|
+
TimerHandler: base_config_1.TYPE,
|
|
1087
|
+
Transferable: base_config_1.TYPE,
|
|
1088
|
+
Uint32List: base_config_1.TYPE,
|
|
1089
|
+
UvmEntries: base_config_1.TYPE,
|
|
1090
|
+
UvmEntry: base_config_1.TYPE,
|
|
1091
|
+
VibratePattern: base_config_1.TYPE,
|
|
1092
|
+
WindowProxy: base_config_1.TYPE,
|
|
1093
|
+
XMLHttpRequestBodyInit: base_config_1.TYPE,
|
|
1094
|
+
AlignSetting: base_config_1.TYPE,
|
|
1095
|
+
AnimationPlayState: base_config_1.TYPE,
|
|
1096
|
+
AnimationReplaceState: base_config_1.TYPE,
|
|
1097
|
+
AppendMode: base_config_1.TYPE,
|
|
1098
|
+
AttestationConveyancePreference: base_config_1.TYPE,
|
|
1099
|
+
AudioContextLatencyCategory: base_config_1.TYPE,
|
|
1100
|
+
AudioContextState: base_config_1.TYPE,
|
|
1101
|
+
AuthenticatorAttachment: base_config_1.TYPE,
|
|
1102
|
+
AuthenticatorTransport: base_config_1.TYPE,
|
|
1103
|
+
AutoKeyword: base_config_1.TYPE,
|
|
1104
|
+
AutomationRate: base_config_1.TYPE,
|
|
1105
|
+
BinaryType: base_config_1.TYPE,
|
|
1106
|
+
BiquadFilterType: base_config_1.TYPE,
|
|
1107
|
+
CanPlayTypeResult: base_config_1.TYPE,
|
|
1108
|
+
CanvasDirection: base_config_1.TYPE,
|
|
1109
|
+
CanvasFillRule: base_config_1.TYPE,
|
|
1110
|
+
CanvasFontKerning: base_config_1.TYPE,
|
|
1111
|
+
CanvasFontStretch: base_config_1.TYPE,
|
|
1112
|
+
CanvasFontVariantCaps: base_config_1.TYPE,
|
|
1113
|
+
CanvasLineCap: base_config_1.TYPE,
|
|
1114
|
+
CanvasLineJoin: base_config_1.TYPE,
|
|
1115
|
+
CanvasTextAlign: base_config_1.TYPE,
|
|
1116
|
+
CanvasTextBaseline: base_config_1.TYPE,
|
|
1117
|
+
CanvasTextRendering: base_config_1.TYPE,
|
|
1118
|
+
ChannelCountMode: base_config_1.TYPE,
|
|
1119
|
+
ChannelInterpretation: base_config_1.TYPE,
|
|
1120
|
+
ClientTypes: base_config_1.TYPE,
|
|
1121
|
+
ColorGamut: base_config_1.TYPE,
|
|
1122
|
+
ColorSpaceConversion: base_config_1.TYPE,
|
|
1123
|
+
CompositeOperation: base_config_1.TYPE,
|
|
1124
|
+
CompositeOperationOrAuto: base_config_1.TYPE,
|
|
1125
|
+
ConnectionType: base_config_1.TYPE,
|
|
1126
|
+
CredentialMediationRequirement: base_config_1.TYPE,
|
|
1127
|
+
DOMParserSupportedType: base_config_1.TYPE,
|
|
1128
|
+
DirectionSetting: base_config_1.TYPE,
|
|
1129
|
+
DisplayCaptureSurfaceType: base_config_1.TYPE,
|
|
1130
|
+
DistanceModelType: base_config_1.TYPE,
|
|
1131
|
+
DocumentReadyState: base_config_1.TYPE,
|
|
1132
|
+
EndOfStreamError: base_config_1.TYPE,
|
|
1133
|
+
EndingType: base_config_1.TYPE,
|
|
1134
|
+
FillMode: base_config_1.TYPE,
|
|
1135
|
+
FontFaceLoadStatus: base_config_1.TYPE,
|
|
1136
|
+
FontFaceSetLoadStatus: base_config_1.TYPE,
|
|
1137
|
+
FullscreenNavigationUI: base_config_1.TYPE,
|
|
1138
|
+
GamepadHapticActuatorType: base_config_1.TYPE,
|
|
1139
|
+
GamepadMappingType: base_config_1.TYPE,
|
|
1140
|
+
HdrMetadataType: base_config_1.TYPE,
|
|
1141
|
+
IDBCursorDirection: base_config_1.TYPE,
|
|
1142
|
+
IDBRequestReadyState: base_config_1.TYPE,
|
|
1143
|
+
IDBTransactionMode: base_config_1.TYPE,
|
|
1144
|
+
ImageOrientation: base_config_1.TYPE,
|
|
1145
|
+
ImageSmoothingQuality: base_config_1.TYPE,
|
|
1146
|
+
IterationCompositeOperation: base_config_1.TYPE,
|
|
1147
|
+
KeyFormat: base_config_1.TYPE,
|
|
1148
|
+
KeyType: base_config_1.TYPE,
|
|
1149
|
+
KeyUsage: base_config_1.TYPE,
|
|
1150
|
+
LineAlignSetting: base_config_1.TYPE,
|
|
1151
|
+
MediaDecodingType: base_config_1.TYPE,
|
|
1152
|
+
MediaDeviceKind: base_config_1.TYPE,
|
|
1153
|
+
MediaEncodingType: base_config_1.TYPE,
|
|
1154
|
+
MediaKeyMessageType: base_config_1.TYPE,
|
|
1155
|
+
MediaKeySessionClosedReason: base_config_1.TYPE,
|
|
1156
|
+
MediaKeySessionType: base_config_1.TYPE,
|
|
1157
|
+
MediaKeyStatus: base_config_1.TYPE,
|
|
1158
|
+
MediaKeysRequirement: base_config_1.TYPE,
|
|
1159
|
+
MediaSessionAction: base_config_1.TYPE,
|
|
1160
|
+
MediaSessionPlaybackState: base_config_1.TYPE,
|
|
1161
|
+
MediaStreamTrackState: base_config_1.TYPE,
|
|
1162
|
+
NavigationType: base_config_1.TYPE,
|
|
1163
|
+
NotificationDirection: base_config_1.TYPE,
|
|
1164
|
+
NotificationPermission: base_config_1.TYPE,
|
|
1165
|
+
OrientationLockType: base_config_1.TYPE,
|
|
1166
|
+
OrientationType: base_config_1.TYPE,
|
|
1167
|
+
OscillatorType: base_config_1.TYPE,
|
|
1168
|
+
OverSampleType: base_config_1.TYPE,
|
|
1169
|
+
PanningModelType: base_config_1.TYPE,
|
|
1170
|
+
PaymentComplete: base_config_1.TYPE,
|
|
1171
|
+
PermissionName: base_config_1.TYPE,
|
|
1172
|
+
PermissionState: base_config_1.TYPE,
|
|
1173
|
+
PlaybackDirection: base_config_1.TYPE,
|
|
1174
|
+
PositionAlignSetting: base_config_1.TYPE,
|
|
1175
|
+
PredefinedColorSpace: base_config_1.TYPE,
|
|
1176
|
+
PremultiplyAlpha: base_config_1.TYPE,
|
|
1177
|
+
PresentationStyle: base_config_1.TYPE,
|
|
1178
|
+
PublicKeyCredentialType: base_config_1.TYPE,
|
|
1179
|
+
PushEncryptionKeyName: base_config_1.TYPE,
|
|
1180
|
+
PushPermissionState: base_config_1.TYPE,
|
|
1181
|
+
RTCBundlePolicy: base_config_1.TYPE,
|
|
1182
|
+
RTCDataChannelState: base_config_1.TYPE,
|
|
1183
|
+
RTCDegradationPreference: base_config_1.TYPE,
|
|
1184
|
+
RTCDtlsTransportState: base_config_1.TYPE,
|
|
1185
|
+
RTCIceCandidateType: base_config_1.TYPE,
|
|
1186
|
+
RTCIceComponent: base_config_1.TYPE,
|
|
1187
|
+
RTCIceConnectionState: base_config_1.TYPE,
|
|
1188
|
+
RTCIceCredentialType: base_config_1.TYPE,
|
|
1189
|
+
RTCIceGathererState: base_config_1.TYPE,
|
|
1190
|
+
RTCIceGatheringState: base_config_1.TYPE,
|
|
1191
|
+
RTCIceProtocol: base_config_1.TYPE,
|
|
1192
|
+
RTCIceTcpCandidateType: base_config_1.TYPE,
|
|
1193
|
+
RTCIceTransportPolicy: base_config_1.TYPE,
|
|
1194
|
+
RTCIceTransportState: base_config_1.TYPE,
|
|
1195
|
+
RTCPeerConnectionState: base_config_1.TYPE,
|
|
1196
|
+
RTCPriorityType: base_config_1.TYPE,
|
|
1197
|
+
RTCRtcpMuxPolicy: base_config_1.TYPE,
|
|
1198
|
+
RTCRtpTransceiverDirection: base_config_1.TYPE,
|
|
1199
|
+
RTCSdpType: base_config_1.TYPE,
|
|
1200
|
+
RTCSignalingState: base_config_1.TYPE,
|
|
1201
|
+
RTCStatsIceCandidatePairState: base_config_1.TYPE,
|
|
1202
|
+
RTCStatsType: base_config_1.TYPE,
|
|
1203
|
+
ReadyState: base_config_1.TYPE,
|
|
1204
|
+
RecordingState: base_config_1.TYPE,
|
|
1205
|
+
ReferrerPolicy: base_config_1.TYPE,
|
|
1206
|
+
RemotePlaybackState: base_config_1.TYPE,
|
|
1207
|
+
RequestCache: base_config_1.TYPE,
|
|
1208
|
+
RequestCredentials: base_config_1.TYPE,
|
|
1209
|
+
RequestDestination: base_config_1.TYPE,
|
|
1210
|
+
RequestMode: base_config_1.TYPE,
|
|
1211
|
+
RequestRedirect: base_config_1.TYPE,
|
|
1212
|
+
ResidentKeyRequirement: base_config_1.TYPE,
|
|
1213
|
+
ResizeObserverBoxOptions: base_config_1.TYPE,
|
|
1214
|
+
ResizeQuality: base_config_1.TYPE,
|
|
1215
|
+
ResponseType: base_config_1.TYPE,
|
|
1216
|
+
ScrollBehavior: base_config_1.TYPE,
|
|
1217
|
+
ScrollLogicalPosition: base_config_1.TYPE,
|
|
1218
|
+
ScrollRestoration: base_config_1.TYPE,
|
|
1219
|
+
ScrollSetting: base_config_1.TYPE,
|
|
1220
|
+
SecurityPolicyViolationEventDisposition: base_config_1.TYPE,
|
|
1221
|
+
SelectionMode: base_config_1.TYPE,
|
|
1222
|
+
ServiceWorkerState: base_config_1.TYPE,
|
|
1223
|
+
ServiceWorkerUpdateViaCache: base_config_1.TYPE,
|
|
1224
|
+
ShadowRootMode: base_config_1.TYPE,
|
|
1225
|
+
SlotAssignmentMode: base_config_1.TYPE,
|
|
1226
|
+
SpeechSynthesisErrorCode: base_config_1.TYPE,
|
|
1227
|
+
TextTrackKind: base_config_1.TYPE,
|
|
1228
|
+
TextTrackMode: base_config_1.TYPE,
|
|
1229
|
+
TouchType: base_config_1.TYPE,
|
|
1230
|
+
TransferFunction: base_config_1.TYPE,
|
|
1231
|
+
UserVerificationRequirement: base_config_1.TYPE,
|
|
1232
|
+
VideoFacingModeEnum: base_config_1.TYPE,
|
|
1233
|
+
VisibilityState: base_config_1.TYPE,
|
|
1234
|
+
WebGLPowerPreference: base_config_1.TYPE,
|
|
1235
|
+
WorkerType: base_config_1.TYPE,
|
|
1236
|
+
XMLHttpRequestResponseType: base_config_1.TYPE,
|
|
1237
|
+
};
|
|
1238
|
+
//# sourceMappingURL=dom.js.map
|