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,1384 @@
|
|
|
1
|
+
/**********************************************
|
|
2
|
+
* DO NOT MODIFY THIS FILE MANUALLY *
|
|
3
|
+
* *
|
|
4
|
+
* THIS FILE HAS BEEN COPIED FROM ast-spec. *
|
|
5
|
+
* ANY CHANGES WILL BE LOST ON THE NEXT BUILD *
|
|
6
|
+
* *
|
|
7
|
+
* MAKE CHANGES TO ast-spec AND THEN RUN *
|
|
8
|
+
* yarn build *
|
|
9
|
+
**********************************************/
|
|
10
|
+
import type { SyntaxKind } from 'typescript';
|
|
11
|
+
export declare type Accessibility = 'private' | 'protected' | 'public';
|
|
12
|
+
export declare interface ArrayExpression extends BaseNode {
|
|
13
|
+
type: AST_NODE_TYPES.ArrayExpression;
|
|
14
|
+
elements: Expression[];
|
|
15
|
+
}
|
|
16
|
+
export declare interface ArrayPattern extends BaseNode {
|
|
17
|
+
type: AST_NODE_TYPES.ArrayPattern;
|
|
18
|
+
elements: (DestructuringPattern | null)[];
|
|
19
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
20
|
+
optional?: boolean;
|
|
21
|
+
decorators?: Decorator[];
|
|
22
|
+
}
|
|
23
|
+
export declare interface ArrowFunctionExpression extends BaseNode {
|
|
24
|
+
type: AST_NODE_TYPES.ArrowFunctionExpression;
|
|
25
|
+
generator: boolean;
|
|
26
|
+
id: null;
|
|
27
|
+
params: Parameter[];
|
|
28
|
+
body: BlockStatement | Expression;
|
|
29
|
+
async: boolean;
|
|
30
|
+
expression: boolean;
|
|
31
|
+
returnType?: TSTypeAnnotation;
|
|
32
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
33
|
+
}
|
|
34
|
+
export declare interface AssignmentExpression extends BaseNode {
|
|
35
|
+
type: AST_NODE_TYPES.AssignmentExpression;
|
|
36
|
+
operator: '-=' | '??=' | '**=' | '*=' | '/=' | '&&=' | '&=' | '%=' | '^=' | '+=' | '<<=' | '=' | '>>=' | '>>>=' | '|=' | '||=';
|
|
37
|
+
left: Expression;
|
|
38
|
+
right: Expression;
|
|
39
|
+
}
|
|
40
|
+
export declare interface AssignmentPattern extends BaseNode {
|
|
41
|
+
type: AST_NODE_TYPES.AssignmentPattern;
|
|
42
|
+
left: BindingName;
|
|
43
|
+
right: Expression;
|
|
44
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
45
|
+
optional?: boolean;
|
|
46
|
+
decorators?: Decorator[];
|
|
47
|
+
}
|
|
48
|
+
export declare enum AST_NODE_TYPES {
|
|
49
|
+
ArrayExpression = "ArrayExpression",
|
|
50
|
+
ArrayPattern = "ArrayPattern",
|
|
51
|
+
ArrowFunctionExpression = "ArrowFunctionExpression",
|
|
52
|
+
AssignmentExpression = "AssignmentExpression",
|
|
53
|
+
AssignmentPattern = "AssignmentPattern",
|
|
54
|
+
AwaitExpression = "AwaitExpression",
|
|
55
|
+
BinaryExpression = "BinaryExpression",
|
|
56
|
+
BlockStatement = "BlockStatement",
|
|
57
|
+
BreakStatement = "BreakStatement",
|
|
58
|
+
CallExpression = "CallExpression",
|
|
59
|
+
CatchClause = "CatchClause",
|
|
60
|
+
ChainExpression = "ChainExpression",
|
|
61
|
+
ClassBody = "ClassBody",
|
|
62
|
+
ClassDeclaration = "ClassDeclaration",
|
|
63
|
+
ClassExpression = "ClassExpression",
|
|
64
|
+
ConditionalExpression = "ConditionalExpression",
|
|
65
|
+
ContinueStatement = "ContinueStatement",
|
|
66
|
+
DebuggerStatement = "DebuggerStatement",
|
|
67
|
+
Decorator = "Decorator",
|
|
68
|
+
DoWhileStatement = "DoWhileStatement",
|
|
69
|
+
EmptyStatement = "EmptyStatement",
|
|
70
|
+
ExportAllDeclaration = "ExportAllDeclaration",
|
|
71
|
+
ExportDefaultDeclaration = "ExportDefaultDeclaration",
|
|
72
|
+
ExportNamedDeclaration = "ExportNamedDeclaration",
|
|
73
|
+
ExportSpecifier = "ExportSpecifier",
|
|
74
|
+
ExpressionStatement = "ExpressionStatement",
|
|
75
|
+
ForInStatement = "ForInStatement",
|
|
76
|
+
ForOfStatement = "ForOfStatement",
|
|
77
|
+
ForStatement = "ForStatement",
|
|
78
|
+
FunctionDeclaration = "FunctionDeclaration",
|
|
79
|
+
FunctionExpression = "FunctionExpression",
|
|
80
|
+
Identifier = "Identifier",
|
|
81
|
+
IfStatement = "IfStatement",
|
|
82
|
+
ImportAttribute = "ImportAttribute",
|
|
83
|
+
ImportDeclaration = "ImportDeclaration",
|
|
84
|
+
ImportDefaultSpecifier = "ImportDefaultSpecifier",
|
|
85
|
+
ImportExpression = "ImportExpression",
|
|
86
|
+
ImportNamespaceSpecifier = "ImportNamespaceSpecifier",
|
|
87
|
+
ImportSpecifier = "ImportSpecifier",
|
|
88
|
+
JSXAttribute = "JSXAttribute",
|
|
89
|
+
JSXClosingElement = "JSXClosingElement",
|
|
90
|
+
JSXClosingFragment = "JSXClosingFragment",
|
|
91
|
+
JSXElement = "JSXElement",
|
|
92
|
+
JSXEmptyExpression = "JSXEmptyExpression",
|
|
93
|
+
JSXExpressionContainer = "JSXExpressionContainer",
|
|
94
|
+
JSXFragment = "JSXFragment",
|
|
95
|
+
JSXIdentifier = "JSXIdentifier",
|
|
96
|
+
JSXMemberExpression = "JSXMemberExpression",
|
|
97
|
+
JSXNamespacedName = "JSXNamespacedName",
|
|
98
|
+
JSXOpeningElement = "JSXOpeningElement",
|
|
99
|
+
JSXOpeningFragment = "JSXOpeningFragment",
|
|
100
|
+
JSXSpreadAttribute = "JSXSpreadAttribute",
|
|
101
|
+
JSXSpreadChild = "JSXSpreadChild",
|
|
102
|
+
JSXText = "JSXText",
|
|
103
|
+
LabeledStatement = "LabeledStatement",
|
|
104
|
+
Literal = "Literal",
|
|
105
|
+
LogicalExpression = "LogicalExpression",
|
|
106
|
+
MemberExpression = "MemberExpression",
|
|
107
|
+
MetaProperty = "MetaProperty",
|
|
108
|
+
MethodDefinition = "MethodDefinition",
|
|
109
|
+
NewExpression = "NewExpression",
|
|
110
|
+
ObjectExpression = "ObjectExpression",
|
|
111
|
+
ObjectPattern = "ObjectPattern",
|
|
112
|
+
PrivateIdentifier = "PrivateIdentifier",
|
|
113
|
+
Program = "Program",
|
|
114
|
+
Property = "Property",
|
|
115
|
+
PropertyDefinition = "PropertyDefinition",
|
|
116
|
+
RestElement = "RestElement",
|
|
117
|
+
ReturnStatement = "ReturnStatement",
|
|
118
|
+
SequenceExpression = "SequenceExpression",
|
|
119
|
+
SpreadElement = "SpreadElement",
|
|
120
|
+
StaticBlock = "StaticBlock",
|
|
121
|
+
Super = "Super",
|
|
122
|
+
SwitchCase = "SwitchCase",
|
|
123
|
+
SwitchStatement = "SwitchStatement",
|
|
124
|
+
TaggedTemplateExpression = "TaggedTemplateExpression",
|
|
125
|
+
TemplateElement = "TemplateElement",
|
|
126
|
+
TemplateLiteral = "TemplateLiteral",
|
|
127
|
+
ThisExpression = "ThisExpression",
|
|
128
|
+
ThrowStatement = "ThrowStatement",
|
|
129
|
+
TryStatement = "TryStatement",
|
|
130
|
+
UnaryExpression = "UnaryExpression",
|
|
131
|
+
UpdateExpression = "UpdateExpression",
|
|
132
|
+
VariableDeclaration = "VariableDeclaration",
|
|
133
|
+
VariableDeclarator = "VariableDeclarator",
|
|
134
|
+
WhileStatement = "WhileStatement",
|
|
135
|
+
WithStatement = "WithStatement",
|
|
136
|
+
YieldExpression = "YieldExpression",
|
|
137
|
+
/**
|
|
138
|
+
* TS-prefixed nodes
|
|
139
|
+
*/
|
|
140
|
+
TSAbstractKeyword = "TSAbstractKeyword",
|
|
141
|
+
TSAbstractMethodDefinition = "TSAbstractMethodDefinition",
|
|
142
|
+
TSAbstractPropertyDefinition = "TSAbstractPropertyDefinition",
|
|
143
|
+
TSAnyKeyword = "TSAnyKeyword",
|
|
144
|
+
TSArrayType = "TSArrayType",
|
|
145
|
+
TSAsExpression = "TSAsExpression",
|
|
146
|
+
TSAsyncKeyword = "TSAsyncKeyword",
|
|
147
|
+
TSBigIntKeyword = "TSBigIntKeyword",
|
|
148
|
+
TSBooleanKeyword = "TSBooleanKeyword",
|
|
149
|
+
TSCallSignatureDeclaration = "TSCallSignatureDeclaration",
|
|
150
|
+
TSClassImplements = "TSClassImplements",
|
|
151
|
+
TSConditionalType = "TSConditionalType",
|
|
152
|
+
TSConstructorType = "TSConstructorType",
|
|
153
|
+
TSConstructSignatureDeclaration = "TSConstructSignatureDeclaration",
|
|
154
|
+
TSDeclareFunction = "TSDeclareFunction",
|
|
155
|
+
TSDeclareKeyword = "TSDeclareKeyword",
|
|
156
|
+
TSEmptyBodyFunctionExpression = "TSEmptyBodyFunctionExpression",
|
|
157
|
+
TSEnumDeclaration = "TSEnumDeclaration",
|
|
158
|
+
TSEnumMember = "TSEnumMember",
|
|
159
|
+
TSExportAssignment = "TSExportAssignment",
|
|
160
|
+
TSExportKeyword = "TSExportKeyword",
|
|
161
|
+
TSExternalModuleReference = "TSExternalModuleReference",
|
|
162
|
+
TSFunctionType = "TSFunctionType",
|
|
163
|
+
TSImportEqualsDeclaration = "TSImportEqualsDeclaration",
|
|
164
|
+
TSImportType = "TSImportType",
|
|
165
|
+
TSIndexedAccessType = "TSIndexedAccessType",
|
|
166
|
+
TSIndexSignature = "TSIndexSignature",
|
|
167
|
+
TSInferType = "TSInferType",
|
|
168
|
+
TSInterfaceBody = "TSInterfaceBody",
|
|
169
|
+
TSInterfaceDeclaration = "TSInterfaceDeclaration",
|
|
170
|
+
TSInterfaceHeritage = "TSInterfaceHeritage",
|
|
171
|
+
TSIntersectionType = "TSIntersectionType",
|
|
172
|
+
TSIntrinsicKeyword = "TSIntrinsicKeyword",
|
|
173
|
+
TSLiteralType = "TSLiteralType",
|
|
174
|
+
TSMappedType = "TSMappedType",
|
|
175
|
+
TSMethodSignature = "TSMethodSignature",
|
|
176
|
+
TSModuleBlock = "TSModuleBlock",
|
|
177
|
+
TSModuleDeclaration = "TSModuleDeclaration",
|
|
178
|
+
TSNamedTupleMember = "TSNamedTupleMember",
|
|
179
|
+
TSNamespaceExportDeclaration = "TSNamespaceExportDeclaration",
|
|
180
|
+
TSNeverKeyword = "TSNeverKeyword",
|
|
181
|
+
TSNonNullExpression = "TSNonNullExpression",
|
|
182
|
+
TSNullKeyword = "TSNullKeyword",
|
|
183
|
+
TSNumberKeyword = "TSNumberKeyword",
|
|
184
|
+
TSObjectKeyword = "TSObjectKeyword",
|
|
185
|
+
TSOptionalType = "TSOptionalType",
|
|
186
|
+
TSParameterProperty = "TSParameterProperty",
|
|
187
|
+
TSPrivateKeyword = "TSPrivateKeyword",
|
|
188
|
+
TSPropertySignature = "TSPropertySignature",
|
|
189
|
+
TSProtectedKeyword = "TSProtectedKeyword",
|
|
190
|
+
TSPublicKeyword = "TSPublicKeyword",
|
|
191
|
+
TSQualifiedName = "TSQualifiedName",
|
|
192
|
+
TSReadonlyKeyword = "TSReadonlyKeyword",
|
|
193
|
+
TSRestType = "TSRestType",
|
|
194
|
+
TSStaticKeyword = "TSStaticKeyword",
|
|
195
|
+
TSStringKeyword = "TSStringKeyword",
|
|
196
|
+
TSSymbolKeyword = "TSSymbolKeyword",
|
|
197
|
+
TSTemplateLiteralType = "TSTemplateLiteralType",
|
|
198
|
+
TSThisType = "TSThisType",
|
|
199
|
+
TSTupleType = "TSTupleType",
|
|
200
|
+
TSTypeAliasDeclaration = "TSTypeAliasDeclaration",
|
|
201
|
+
TSTypeAnnotation = "TSTypeAnnotation",
|
|
202
|
+
TSTypeAssertion = "TSTypeAssertion",
|
|
203
|
+
TSTypeLiteral = "TSTypeLiteral",
|
|
204
|
+
TSTypeOperator = "TSTypeOperator",
|
|
205
|
+
TSTypeParameter = "TSTypeParameter",
|
|
206
|
+
TSTypeParameterDeclaration = "TSTypeParameterDeclaration",
|
|
207
|
+
TSTypeParameterInstantiation = "TSTypeParameterInstantiation",
|
|
208
|
+
TSTypePredicate = "TSTypePredicate",
|
|
209
|
+
TSTypeQuery = "TSTypeQuery",
|
|
210
|
+
TSTypeReference = "TSTypeReference",
|
|
211
|
+
TSUndefinedKeyword = "TSUndefinedKeyword",
|
|
212
|
+
TSUnionType = "TSUnionType",
|
|
213
|
+
TSUnknownKeyword = "TSUnknownKeyword",
|
|
214
|
+
TSVoidKeyword = "TSVoidKeyword"
|
|
215
|
+
}
|
|
216
|
+
export declare enum AST_TOKEN_TYPES {
|
|
217
|
+
Boolean = "Boolean",
|
|
218
|
+
Identifier = "Identifier",
|
|
219
|
+
JSXIdentifier = "JSXIdentifier",
|
|
220
|
+
JSXText = "JSXText",
|
|
221
|
+
Keyword = "Keyword",
|
|
222
|
+
Null = "Null",
|
|
223
|
+
Numeric = "Numeric",
|
|
224
|
+
Punctuator = "Punctuator",
|
|
225
|
+
RegularExpression = "RegularExpression",
|
|
226
|
+
String = "String",
|
|
227
|
+
Template = "Template",
|
|
228
|
+
Block = "Block",
|
|
229
|
+
Line = "Line"
|
|
230
|
+
}
|
|
231
|
+
export declare interface AwaitExpression extends BaseNode {
|
|
232
|
+
type: AST_NODE_TYPES.AwaitExpression;
|
|
233
|
+
argument: AwaitExpression | LeftHandSideExpression | UnaryExpression | UpdateExpression;
|
|
234
|
+
}
|
|
235
|
+
export declare interface BaseNode extends NodeOrTokenData {
|
|
236
|
+
/**
|
|
237
|
+
* The parent node of the current node
|
|
238
|
+
*
|
|
239
|
+
* This is added in the @typescript-eslint/types package as ESLint adds it
|
|
240
|
+
* while traversing.
|
|
241
|
+
*/
|
|
242
|
+
type: AST_NODE_TYPES;
|
|
243
|
+
}
|
|
244
|
+
declare interface BaseToken extends NodeOrTokenData {
|
|
245
|
+
type: AST_TOKEN_TYPES;
|
|
246
|
+
value: string;
|
|
247
|
+
}
|
|
248
|
+
export declare interface BigIntLiteral extends LiteralBase {
|
|
249
|
+
value: bigint | null;
|
|
250
|
+
bigint: string;
|
|
251
|
+
}
|
|
252
|
+
export declare interface BinaryExpression extends BaseNode {
|
|
253
|
+
type: AST_NODE_TYPES.BinaryExpression;
|
|
254
|
+
operator: string;
|
|
255
|
+
left: Expression | PrivateIdentifier;
|
|
256
|
+
right: Expression;
|
|
257
|
+
}
|
|
258
|
+
export declare type BindingName = BindingPattern | Identifier;
|
|
259
|
+
export declare type BindingPattern = ArrayPattern | ObjectPattern;
|
|
260
|
+
export declare interface BlockComment extends BaseToken {
|
|
261
|
+
type: AST_TOKEN_TYPES.Block;
|
|
262
|
+
}
|
|
263
|
+
export declare interface BlockStatement extends BaseNode {
|
|
264
|
+
type: AST_NODE_TYPES.BlockStatement;
|
|
265
|
+
body: Statement[];
|
|
266
|
+
}
|
|
267
|
+
export declare interface BooleanLiteral extends LiteralBase {
|
|
268
|
+
value: boolean;
|
|
269
|
+
raw: 'false' | 'true';
|
|
270
|
+
}
|
|
271
|
+
export declare interface BooleanToken extends BaseToken {
|
|
272
|
+
type: AST_TOKEN_TYPES.Boolean;
|
|
273
|
+
}
|
|
274
|
+
export declare interface BreakStatement extends BaseNode {
|
|
275
|
+
type: AST_NODE_TYPES.BreakStatement;
|
|
276
|
+
label: Identifier | null;
|
|
277
|
+
}
|
|
278
|
+
export declare interface CallExpression extends BaseNode {
|
|
279
|
+
type: AST_NODE_TYPES.CallExpression;
|
|
280
|
+
callee: LeftHandSideExpression;
|
|
281
|
+
arguments: CallExpressionArgument[];
|
|
282
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
283
|
+
optional: boolean;
|
|
284
|
+
}
|
|
285
|
+
export declare type CallExpressionArgument = Expression | SpreadElement;
|
|
286
|
+
export declare interface CatchClause extends BaseNode {
|
|
287
|
+
type: AST_NODE_TYPES.CatchClause;
|
|
288
|
+
param: BindingName | null;
|
|
289
|
+
body: BlockStatement;
|
|
290
|
+
}
|
|
291
|
+
export declare type ChainElement = CallExpression | MemberExpression | TSNonNullExpression;
|
|
292
|
+
export declare interface ChainExpression extends BaseNode {
|
|
293
|
+
type: AST_NODE_TYPES.ChainExpression;
|
|
294
|
+
expression: ChainElement;
|
|
295
|
+
}
|
|
296
|
+
export declare interface ClassBody extends BaseNode {
|
|
297
|
+
type: AST_NODE_TYPES.ClassBody;
|
|
298
|
+
body: ClassElement[];
|
|
299
|
+
}
|
|
300
|
+
export declare interface ClassDeclaration extends ClassDeclarationBase {
|
|
301
|
+
type: AST_NODE_TYPES.ClassDeclaration;
|
|
302
|
+
}
|
|
303
|
+
declare interface ClassDeclarationBase extends BaseNode {
|
|
304
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
305
|
+
superTypeParameters?: TSTypeParameterInstantiation;
|
|
306
|
+
id: Identifier | null;
|
|
307
|
+
body: ClassBody;
|
|
308
|
+
superClass: LeftHandSideExpression | null;
|
|
309
|
+
implements?: TSClassImplements[];
|
|
310
|
+
abstract?: boolean;
|
|
311
|
+
declare?: boolean;
|
|
312
|
+
decorators?: Decorator[];
|
|
313
|
+
}
|
|
314
|
+
export declare type ClassElement = MethodDefinition | PropertyDefinition | StaticBlock | TSAbstractMethodDefinition | TSAbstractPropertyDefinition | TSIndexSignature;
|
|
315
|
+
export declare interface ClassExpression extends ClassDeclarationBase {
|
|
316
|
+
type: AST_NODE_TYPES.ClassExpression;
|
|
317
|
+
}
|
|
318
|
+
declare interface ClassMethodDefinitionNonComputedNameBase extends MethodDefinitionBase {
|
|
319
|
+
key: ClassPropertyNameNonComputed;
|
|
320
|
+
computed: false;
|
|
321
|
+
}
|
|
322
|
+
declare interface ClassPropertyDefinitionNonComputedNameBase extends PropertyDefinitionBase {
|
|
323
|
+
key: ClassPropertyNameNonComputed;
|
|
324
|
+
computed: false;
|
|
325
|
+
}
|
|
326
|
+
export declare type ClassPropertyNameNonComputed = PrivateIdentifier | PropertyNameNonComputed;
|
|
327
|
+
export declare type Comment = BlockComment | LineComment;
|
|
328
|
+
export declare interface ConditionalExpression extends BaseNode {
|
|
329
|
+
type: AST_NODE_TYPES.ConditionalExpression;
|
|
330
|
+
test: Expression;
|
|
331
|
+
consequent: Expression;
|
|
332
|
+
alternate: Expression;
|
|
333
|
+
}
|
|
334
|
+
export declare interface ContinueStatement extends BaseNode {
|
|
335
|
+
type: AST_NODE_TYPES.ContinueStatement;
|
|
336
|
+
label: Identifier | null;
|
|
337
|
+
}
|
|
338
|
+
export declare interface DebuggerStatement extends BaseNode {
|
|
339
|
+
type: AST_NODE_TYPES.DebuggerStatement;
|
|
340
|
+
}
|
|
341
|
+
export declare type DeclarationStatement = ClassDeclaration | ClassExpression | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | FunctionDeclaration | TSDeclareFunction | TSEnumDeclaration | TSImportEqualsDeclaration | TSInterfaceDeclaration | TSModuleDeclaration | TSNamespaceExportDeclaration | TSTypeAliasDeclaration;
|
|
342
|
+
export declare interface Decorator extends BaseNode {
|
|
343
|
+
type: AST_NODE_TYPES.Decorator;
|
|
344
|
+
expression: LeftHandSideExpression;
|
|
345
|
+
}
|
|
346
|
+
export declare type DestructuringPattern = ArrayPattern | AssignmentPattern | Identifier | MemberExpression | ObjectPattern | RestElement;
|
|
347
|
+
export declare interface DoWhileStatement extends BaseNode {
|
|
348
|
+
type: AST_NODE_TYPES.DoWhileStatement;
|
|
349
|
+
test: Expression;
|
|
350
|
+
body: Statement;
|
|
351
|
+
}
|
|
352
|
+
export declare interface EmptyStatement extends BaseNode {
|
|
353
|
+
type: AST_NODE_TYPES.EmptyStatement;
|
|
354
|
+
}
|
|
355
|
+
export declare type EntityName = Identifier | TSQualifiedName;
|
|
356
|
+
export declare interface ExportAllDeclaration extends BaseNode {
|
|
357
|
+
type: AST_NODE_TYPES.ExportAllDeclaration;
|
|
358
|
+
source: StringLiteral | null;
|
|
359
|
+
exportKind: ExportKind;
|
|
360
|
+
exported: Identifier | null;
|
|
361
|
+
assertions: ImportAttribute[];
|
|
362
|
+
}
|
|
363
|
+
declare type ExportAndImportKind = 'type' | 'value';
|
|
364
|
+
export declare type ExportDeclaration = ClassDeclaration | ClassExpression | FunctionDeclaration | TSDeclareFunction | TSEnumDeclaration | TSInterfaceDeclaration | TSModuleDeclaration | TSTypeAliasDeclaration | VariableDeclaration;
|
|
365
|
+
export declare interface ExportDefaultDeclaration extends BaseNode {
|
|
366
|
+
type: AST_NODE_TYPES.ExportDefaultDeclaration;
|
|
367
|
+
declaration: ExportDeclaration | Expression;
|
|
368
|
+
exportKind: ExportKind;
|
|
369
|
+
}
|
|
370
|
+
declare type ExportKind = ExportAndImportKind;
|
|
371
|
+
export declare interface ExportNamedDeclaration extends BaseNode {
|
|
372
|
+
type: AST_NODE_TYPES.ExportNamedDeclaration;
|
|
373
|
+
declaration: ExportDeclaration | null;
|
|
374
|
+
specifiers: ExportSpecifier[];
|
|
375
|
+
source: StringLiteral | null;
|
|
376
|
+
exportKind: ExportKind;
|
|
377
|
+
assertions: ImportAttribute[];
|
|
378
|
+
}
|
|
379
|
+
export declare interface ExportSpecifier extends BaseNode {
|
|
380
|
+
type: AST_NODE_TYPES.ExportSpecifier;
|
|
381
|
+
local: Identifier;
|
|
382
|
+
exported: Identifier;
|
|
383
|
+
exportKind: ExportKind;
|
|
384
|
+
}
|
|
385
|
+
export declare type Expression = ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AwaitExpression | BinaryExpression | CallExpression | ChainExpression | ClassExpression | ConditionalExpression | FunctionExpression | Identifier | ImportExpression | JSXElement | JSXFragment | LiteralExpression | LogicalExpression | MemberExpression | MetaProperty | NewExpression | ObjectExpression | ObjectPattern | SequenceExpression | Super | TaggedTemplateExpression | TemplateLiteral | ThisExpression | TSAsExpression | TSNonNullExpression | TSTypeAssertion | UnaryExpression | UpdateExpression | YieldExpression;
|
|
386
|
+
export declare interface ExpressionStatement extends BaseNode {
|
|
387
|
+
type: AST_NODE_TYPES.ExpressionStatement;
|
|
388
|
+
expression: Expression;
|
|
389
|
+
directive?: string;
|
|
390
|
+
}
|
|
391
|
+
export declare type ForInitialiser = Expression | VariableDeclaration;
|
|
392
|
+
export declare interface ForInStatement extends BaseNode {
|
|
393
|
+
type: AST_NODE_TYPES.ForInStatement;
|
|
394
|
+
left: ForInitialiser;
|
|
395
|
+
right: Expression;
|
|
396
|
+
body: Statement;
|
|
397
|
+
}
|
|
398
|
+
export declare interface ForOfStatement extends BaseNode {
|
|
399
|
+
type: AST_NODE_TYPES.ForOfStatement;
|
|
400
|
+
left: ForInitialiser;
|
|
401
|
+
right: Expression;
|
|
402
|
+
body: Statement;
|
|
403
|
+
await: boolean;
|
|
404
|
+
}
|
|
405
|
+
export declare interface ForStatement extends BaseNode {
|
|
406
|
+
type: AST_NODE_TYPES.ForStatement;
|
|
407
|
+
init: Expression | ForInitialiser | null;
|
|
408
|
+
test: Expression | null;
|
|
409
|
+
update: Expression | null;
|
|
410
|
+
body: Statement;
|
|
411
|
+
}
|
|
412
|
+
export declare interface FunctionDeclaration extends FunctionDeclarationBase {
|
|
413
|
+
type: AST_NODE_TYPES.FunctionDeclaration;
|
|
414
|
+
body: BlockStatement;
|
|
415
|
+
}
|
|
416
|
+
declare interface FunctionDeclarationBase extends BaseNode {
|
|
417
|
+
id: Identifier | null;
|
|
418
|
+
generator: boolean;
|
|
419
|
+
expression: boolean;
|
|
420
|
+
async: boolean;
|
|
421
|
+
params: Parameter[];
|
|
422
|
+
body?: BlockStatement | null;
|
|
423
|
+
returnType?: TSTypeAnnotation;
|
|
424
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
425
|
+
declare?: boolean;
|
|
426
|
+
}
|
|
427
|
+
export declare interface FunctionExpression extends FunctionDeclarationBase {
|
|
428
|
+
type: AST_NODE_TYPES.FunctionExpression;
|
|
429
|
+
body: BlockStatement;
|
|
430
|
+
}
|
|
431
|
+
export declare type FunctionLike = ArrowFunctionExpression | FunctionDeclaration | FunctionExpression | TSDeclareFunction | TSEmptyBodyFunctionExpression;
|
|
432
|
+
export declare interface Identifier extends BaseNode {
|
|
433
|
+
type: AST_NODE_TYPES.Identifier;
|
|
434
|
+
name: string;
|
|
435
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
436
|
+
optional?: boolean;
|
|
437
|
+
decorators?: Decorator[];
|
|
438
|
+
}
|
|
439
|
+
export declare interface IdentifierToken extends BaseToken {
|
|
440
|
+
type: AST_TOKEN_TYPES.Identifier;
|
|
441
|
+
}
|
|
442
|
+
export declare interface IfStatement extends BaseNode {
|
|
443
|
+
type: AST_NODE_TYPES.IfStatement;
|
|
444
|
+
test: Expression;
|
|
445
|
+
consequent: Statement;
|
|
446
|
+
alternate: Statement | null;
|
|
447
|
+
}
|
|
448
|
+
export declare interface ImportAttribute extends BaseNode {
|
|
449
|
+
type: AST_NODE_TYPES.ImportAttribute;
|
|
450
|
+
key: Identifier | Literal;
|
|
451
|
+
value: Literal;
|
|
452
|
+
}
|
|
453
|
+
export declare type ImportClause = ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier;
|
|
454
|
+
export declare interface ImportDeclaration extends BaseNode {
|
|
455
|
+
type: AST_NODE_TYPES.ImportDeclaration;
|
|
456
|
+
source: StringLiteral;
|
|
457
|
+
specifiers: ImportClause[];
|
|
458
|
+
importKind: ImportKind;
|
|
459
|
+
assertions: ImportAttribute[];
|
|
460
|
+
}
|
|
461
|
+
export declare interface ImportDefaultSpecifier extends BaseNode {
|
|
462
|
+
type: AST_NODE_TYPES.ImportDefaultSpecifier;
|
|
463
|
+
local: Identifier;
|
|
464
|
+
}
|
|
465
|
+
export declare interface ImportExpression extends BaseNode {
|
|
466
|
+
type: AST_NODE_TYPES.ImportExpression;
|
|
467
|
+
source: Expression;
|
|
468
|
+
attributes: Expression | null;
|
|
469
|
+
}
|
|
470
|
+
declare type ImportKind = ExportAndImportKind;
|
|
471
|
+
export declare interface ImportNamespaceSpecifier extends BaseNode {
|
|
472
|
+
type: AST_NODE_TYPES.ImportNamespaceSpecifier;
|
|
473
|
+
local: Identifier;
|
|
474
|
+
}
|
|
475
|
+
export declare interface ImportSpecifier extends BaseNode {
|
|
476
|
+
type: AST_NODE_TYPES.ImportSpecifier;
|
|
477
|
+
local: Identifier;
|
|
478
|
+
imported: Identifier;
|
|
479
|
+
importKind: ImportKind;
|
|
480
|
+
}
|
|
481
|
+
export declare type IterationStatement = DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | WhileStatement;
|
|
482
|
+
export declare interface JSXAttribute extends BaseNode {
|
|
483
|
+
type: AST_NODE_TYPES.JSXAttribute;
|
|
484
|
+
name: JSXIdentifier | JSXNamespacedName;
|
|
485
|
+
value: JSXExpression | Literal | null;
|
|
486
|
+
}
|
|
487
|
+
export declare type JSXChild = JSXElement | JSXExpression | JSXFragment | JSXText;
|
|
488
|
+
export declare interface JSXClosingElement extends BaseNode {
|
|
489
|
+
type: AST_NODE_TYPES.JSXClosingElement;
|
|
490
|
+
name: JSXTagNameExpression;
|
|
491
|
+
}
|
|
492
|
+
export declare interface JSXClosingFragment extends BaseNode {
|
|
493
|
+
type: AST_NODE_TYPES.JSXClosingFragment;
|
|
494
|
+
}
|
|
495
|
+
export declare interface JSXElement extends BaseNode {
|
|
496
|
+
type: AST_NODE_TYPES.JSXElement;
|
|
497
|
+
openingElement: JSXOpeningElement;
|
|
498
|
+
closingElement: JSXClosingElement | null;
|
|
499
|
+
children: JSXChild[];
|
|
500
|
+
}
|
|
501
|
+
export declare interface JSXEmptyExpression extends BaseNode {
|
|
502
|
+
type: AST_NODE_TYPES.JSXEmptyExpression;
|
|
503
|
+
}
|
|
504
|
+
export declare type JSXExpression = JSXEmptyExpression | JSXExpressionContainer | JSXSpreadChild;
|
|
505
|
+
export declare interface JSXExpressionContainer extends BaseNode {
|
|
506
|
+
type: AST_NODE_TYPES.JSXExpressionContainer;
|
|
507
|
+
expression: Expression | JSXEmptyExpression;
|
|
508
|
+
}
|
|
509
|
+
export declare interface JSXFragment extends BaseNode {
|
|
510
|
+
type: AST_NODE_TYPES.JSXFragment;
|
|
511
|
+
openingFragment: JSXOpeningFragment;
|
|
512
|
+
closingFragment: JSXClosingFragment;
|
|
513
|
+
children: JSXChild[];
|
|
514
|
+
}
|
|
515
|
+
export declare interface JSXIdentifier extends BaseNode {
|
|
516
|
+
type: AST_NODE_TYPES.JSXIdentifier;
|
|
517
|
+
name: string;
|
|
518
|
+
}
|
|
519
|
+
export declare interface JSXIdentifierToken extends BaseToken {
|
|
520
|
+
type: AST_TOKEN_TYPES.JSXIdentifier;
|
|
521
|
+
}
|
|
522
|
+
export declare interface JSXMemberExpression extends BaseNode {
|
|
523
|
+
type: AST_NODE_TYPES.JSXMemberExpression;
|
|
524
|
+
object: JSXTagNameExpression;
|
|
525
|
+
property: JSXIdentifier;
|
|
526
|
+
}
|
|
527
|
+
export declare interface JSXNamespacedName extends BaseNode {
|
|
528
|
+
type: AST_NODE_TYPES.JSXNamespacedName;
|
|
529
|
+
namespace: JSXIdentifier;
|
|
530
|
+
name: JSXIdentifier;
|
|
531
|
+
}
|
|
532
|
+
export declare interface JSXOpeningElement extends BaseNode {
|
|
533
|
+
type: AST_NODE_TYPES.JSXOpeningElement;
|
|
534
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
535
|
+
selfClosing: boolean;
|
|
536
|
+
name: JSXTagNameExpression;
|
|
537
|
+
attributes: (JSXAttribute | JSXSpreadAttribute)[];
|
|
538
|
+
}
|
|
539
|
+
export declare interface JSXOpeningFragment extends BaseNode {
|
|
540
|
+
type: AST_NODE_TYPES.JSXOpeningFragment;
|
|
541
|
+
}
|
|
542
|
+
export declare interface JSXSpreadAttribute extends BaseNode {
|
|
543
|
+
type: AST_NODE_TYPES.JSXSpreadAttribute;
|
|
544
|
+
argument: Expression;
|
|
545
|
+
}
|
|
546
|
+
export declare interface JSXSpreadChild extends BaseNode {
|
|
547
|
+
type: AST_NODE_TYPES.JSXSpreadChild;
|
|
548
|
+
expression: Expression | JSXEmptyExpression;
|
|
549
|
+
}
|
|
550
|
+
export declare type JSXTagNameExpression = JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
|
|
551
|
+
export declare interface JSXText extends BaseNode {
|
|
552
|
+
type: AST_NODE_TYPES.JSXText;
|
|
553
|
+
value: string;
|
|
554
|
+
raw: string;
|
|
555
|
+
}
|
|
556
|
+
export declare interface JSXTextToken extends BaseToken {
|
|
557
|
+
type: AST_TOKEN_TYPES.JSXText;
|
|
558
|
+
}
|
|
559
|
+
export declare interface KeywordToken extends BaseToken {
|
|
560
|
+
type: AST_TOKEN_TYPES.Keyword;
|
|
561
|
+
}
|
|
562
|
+
export declare interface LabeledStatement extends BaseNode {
|
|
563
|
+
type: AST_NODE_TYPES.LabeledStatement;
|
|
564
|
+
label: Identifier;
|
|
565
|
+
body: Statement;
|
|
566
|
+
}
|
|
567
|
+
export declare type LeftHandSideExpression = ArrayExpression | ArrayPattern | ArrowFunctionExpression | CallExpression | ClassExpression | FunctionExpression | Identifier | JSXElement | JSXFragment | LiteralExpression | MemberExpression | MetaProperty | ObjectExpression | ObjectPattern | SequenceExpression | Super | TaggedTemplateExpression | ThisExpression | TSAsExpression | TSNonNullExpression | TSTypeAssertion;
|
|
568
|
+
export declare interface LineComment extends BaseToken {
|
|
569
|
+
type: AST_TOKEN_TYPES.Line;
|
|
570
|
+
}
|
|
571
|
+
export declare type Literal = BigIntLiteral | BooleanLiteral | NullLiteral | NumberLiteral | RegExpLiteral | StringLiteral;
|
|
572
|
+
declare interface LiteralBase extends BaseNode {
|
|
573
|
+
type: AST_NODE_TYPES.Literal;
|
|
574
|
+
raw: string;
|
|
575
|
+
value: RegExp | bigint | boolean | number | string | null;
|
|
576
|
+
}
|
|
577
|
+
export declare type LiteralExpression = Literal | TemplateLiteral;
|
|
578
|
+
export declare interface LogicalExpression extends BaseNode {
|
|
579
|
+
type: AST_NODE_TYPES.LogicalExpression;
|
|
580
|
+
operator: '??' | '&&' | '||';
|
|
581
|
+
left: Expression;
|
|
582
|
+
right: Expression;
|
|
583
|
+
}
|
|
584
|
+
export declare type MemberExpression = MemberExpressionComputedName | MemberExpressionNonComputedName;
|
|
585
|
+
declare interface MemberExpressionBase extends BaseNode {
|
|
586
|
+
object: LeftHandSideExpression;
|
|
587
|
+
property: Expression | Identifier | PrivateIdentifier;
|
|
588
|
+
computed: boolean;
|
|
589
|
+
optional: boolean;
|
|
590
|
+
}
|
|
591
|
+
export declare interface MemberExpressionComputedName extends MemberExpressionBase {
|
|
592
|
+
type: AST_NODE_TYPES.MemberExpression;
|
|
593
|
+
property: Expression;
|
|
594
|
+
computed: true;
|
|
595
|
+
}
|
|
596
|
+
export declare interface MemberExpressionNonComputedName extends MemberExpressionBase {
|
|
597
|
+
type: AST_NODE_TYPES.MemberExpression;
|
|
598
|
+
property: Identifier | PrivateIdentifier;
|
|
599
|
+
computed: false;
|
|
600
|
+
}
|
|
601
|
+
export declare interface MetaProperty extends BaseNode {
|
|
602
|
+
type: AST_NODE_TYPES.MetaProperty;
|
|
603
|
+
meta: Identifier;
|
|
604
|
+
property: Identifier;
|
|
605
|
+
}
|
|
606
|
+
export declare type MethodDefinition = MethodDefinitionComputedName | MethodDefinitionNonComputedName;
|
|
607
|
+
/** this should not be directly used - instead use MethodDefinitionComputedNameBase or MethodDefinitionNonComputedNameBase */
|
|
608
|
+
declare interface MethodDefinitionBase extends BaseNode {
|
|
609
|
+
key: PropertyName;
|
|
610
|
+
value: FunctionExpression | TSEmptyBodyFunctionExpression;
|
|
611
|
+
computed: boolean;
|
|
612
|
+
static: boolean;
|
|
613
|
+
kind: 'constructor' | 'get' | 'method' | 'set';
|
|
614
|
+
optional?: boolean;
|
|
615
|
+
decorators?: Decorator[];
|
|
616
|
+
accessibility?: Accessibility;
|
|
617
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
618
|
+
override?: boolean;
|
|
619
|
+
}
|
|
620
|
+
export declare interface MethodDefinitionComputedName extends MethodDefinitionComputedNameBase {
|
|
621
|
+
type: AST_NODE_TYPES.MethodDefinition;
|
|
622
|
+
}
|
|
623
|
+
declare interface MethodDefinitionComputedNameBase extends MethodDefinitionBase {
|
|
624
|
+
key: PropertyNameComputed;
|
|
625
|
+
computed: true;
|
|
626
|
+
}
|
|
627
|
+
export declare interface MethodDefinitionNonComputedName extends ClassMethodDefinitionNonComputedNameBase {
|
|
628
|
+
type: AST_NODE_TYPES.MethodDefinition;
|
|
629
|
+
}
|
|
630
|
+
declare interface MethodDefinitionNonComputedNameBase extends MethodDefinitionBase {
|
|
631
|
+
key: PropertyNameNonComputed;
|
|
632
|
+
computed: false;
|
|
633
|
+
}
|
|
634
|
+
export declare type Modifier = TSAbstractKeyword | TSAsyncKeyword | TSPrivateKeyword | TSProtectedKeyword | TSPublicKeyword | TSReadonlyKeyword | TSStaticKeyword;
|
|
635
|
+
export declare interface NewExpression extends BaseNode {
|
|
636
|
+
type: AST_NODE_TYPES.NewExpression;
|
|
637
|
+
callee: LeftHandSideExpression;
|
|
638
|
+
arguments: Expression[];
|
|
639
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
640
|
+
}
|
|
641
|
+
export declare type Node = ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BlockStatement | BreakStatement | CallExpression | CatchClause | ChainExpression | ClassBody | ClassDeclaration | ClassExpression | ConditionalExpression | ContinueStatement | DebuggerStatement | Decorator | DoWhileStatement | EmptyStatement | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ExportSpecifier | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | FunctionExpression | Identifier | IfStatement | ImportAttribute | ImportDeclaration | ImportDefaultSpecifier | ImportExpression | ImportNamespaceSpecifier | ImportSpecifier | JSXAttribute | JSXClosingElement | JSXClosingFragment | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXFragment | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXOpeningFragment | JSXSpreadAttribute | JSXSpreadChild | JSXText | LabeledStatement | Literal | LogicalExpression | MemberExpression | MetaProperty | MethodDefinition | NewExpression | ObjectExpression | ObjectPattern | PrivateIdentifier | Program | Property | PropertyDefinition | RestElement | ReturnStatement | SequenceExpression | SpreadElement | StaticBlock | Super | SwitchCase | SwitchStatement | TaggedTemplateExpression | TemplateElement | TemplateLiteral | ThisExpression | ThrowStatement | TryStatement | TSAbstractKeyword | TSAbstractMethodDefinition | TSAbstractPropertyDefinition | TSAnyKeyword | TSArrayType | TSAsExpression | TSAsyncKeyword | TSBigIntKeyword | TSBooleanKeyword | TSCallSignatureDeclaration | TSClassImplements | TSConditionalType | TSConstructorType | TSConstructSignatureDeclaration | TSDeclareFunction | TSDeclareKeyword | TSEmptyBodyFunctionExpression | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSExportKeyword | TSExternalModuleReference | TSFunctionType | TSImportEqualsDeclaration | TSImportType | TSIndexedAccessType | TSIndexSignature | TSInferType | TSInterfaceBody | TSInterfaceDeclaration | TSInterfaceHeritage | TSIntersectionType | TSIntrinsicKeyword | TSLiteralType | TSMappedType | TSMethodSignature | TSModuleBlock | TSModuleDeclaration | TSNamedTupleMember | TSNamespaceExportDeclaration | TSNeverKeyword | TSNonNullExpression | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSOptionalType | TSParameterProperty | TSPrivateKeyword | TSPropertySignature | TSProtectedKeyword | TSPublicKeyword | TSQualifiedName | TSReadonlyKeyword | TSRestType | TSStaticKeyword | TSStringKeyword | TSSymbolKeyword | TSTemplateLiteralType | TSThisType | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeLiteral | TSTypeOperator | TSTypeParameter | TSTypeParameterDeclaration | TSTypeParameterInstantiation | TSTypePredicate | TSTypeQuery | TSTypeReference | TSUndefinedKeyword | TSUnionType | TSUnknownKeyword | TSVoidKeyword | UnaryExpression | UpdateExpression | VariableDeclaration | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
|
|
642
|
+
declare interface NodeOrTokenData {
|
|
643
|
+
/**
|
|
644
|
+
* The source location information of the node.
|
|
645
|
+
*
|
|
646
|
+
* The loc property is defined as nullable by ESTree, but ESLint requires this property.
|
|
647
|
+
*
|
|
648
|
+
* @see {SourceLocation}
|
|
649
|
+
*/
|
|
650
|
+
loc: SourceLocation;
|
|
651
|
+
/**
|
|
652
|
+
* @see {Range}
|
|
653
|
+
*/
|
|
654
|
+
range: Range;
|
|
655
|
+
type: string;
|
|
656
|
+
}
|
|
657
|
+
export declare interface NullLiteral extends LiteralBase {
|
|
658
|
+
value: null;
|
|
659
|
+
raw: 'null';
|
|
660
|
+
}
|
|
661
|
+
export declare interface NullToken extends BaseToken {
|
|
662
|
+
type: AST_TOKEN_TYPES.Null;
|
|
663
|
+
}
|
|
664
|
+
export declare interface NumberLiteral extends LiteralBase {
|
|
665
|
+
value: number;
|
|
666
|
+
}
|
|
667
|
+
export declare interface NumericToken extends BaseToken {
|
|
668
|
+
type: AST_TOKEN_TYPES.Numeric;
|
|
669
|
+
}
|
|
670
|
+
export declare interface ObjectExpression extends BaseNode {
|
|
671
|
+
type: AST_NODE_TYPES.ObjectExpression;
|
|
672
|
+
properties: ObjectLiteralElement[];
|
|
673
|
+
}
|
|
674
|
+
export declare type ObjectLiteralElement = MethodDefinition | Property | SpreadElement;
|
|
675
|
+
export declare type ObjectLiteralElementLike = ObjectLiteralElement;
|
|
676
|
+
export declare interface ObjectPattern extends BaseNode {
|
|
677
|
+
type: AST_NODE_TYPES.ObjectPattern;
|
|
678
|
+
properties: (Property | RestElement)[];
|
|
679
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
680
|
+
optional?: boolean;
|
|
681
|
+
decorators?: Decorator[];
|
|
682
|
+
}
|
|
683
|
+
export declare type OptionalRangeAndLoc<T> = Pick<T, Exclude<keyof T, 'loc' | 'range'>> & {
|
|
684
|
+
range?: Range;
|
|
685
|
+
loc?: SourceLocation;
|
|
686
|
+
};
|
|
687
|
+
export declare type Parameter = ArrayPattern | AssignmentPattern | Identifier | ObjectPattern | RestElement | TSParameterProperty;
|
|
688
|
+
export declare interface Position {
|
|
689
|
+
/**
|
|
690
|
+
* Line number (1-indexed)
|
|
691
|
+
*/
|
|
692
|
+
line: number;
|
|
693
|
+
/**
|
|
694
|
+
* Column number on the line (0-indexed)
|
|
695
|
+
*/
|
|
696
|
+
column: number;
|
|
697
|
+
}
|
|
698
|
+
export declare type PrimaryExpression = ArrayExpression | ArrayPattern | ClassExpression | FunctionExpression | Identifier | JSXElement | JSXFragment | JSXOpeningElement | LiteralExpression | MetaProperty | ObjectExpression | ObjectPattern | Super | TemplateLiteral | ThisExpression | TSNullKeyword;
|
|
699
|
+
export declare interface PrivateIdentifier extends BaseNode {
|
|
700
|
+
type: AST_NODE_TYPES.PrivateIdentifier;
|
|
701
|
+
name: string;
|
|
702
|
+
}
|
|
703
|
+
export declare interface Program extends BaseNode {
|
|
704
|
+
type: AST_NODE_TYPES.Program;
|
|
705
|
+
body: ProgramStatement[];
|
|
706
|
+
sourceType: 'module' | 'script';
|
|
707
|
+
comments?: Comment[];
|
|
708
|
+
tokens?: Token[];
|
|
709
|
+
}
|
|
710
|
+
export declare type ProgramStatement = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration | Statement | TSImportEqualsDeclaration | TSNamespaceExportDeclaration;
|
|
711
|
+
export declare type Property = PropertyComputedName | PropertyNonComputedName;
|
|
712
|
+
declare interface PropertyBase extends BaseNode {
|
|
713
|
+
type: AST_NODE_TYPES.Property;
|
|
714
|
+
key: PropertyName;
|
|
715
|
+
value: AssignmentPattern | BindingName | Expression | TSEmptyBodyFunctionExpression;
|
|
716
|
+
computed: boolean;
|
|
717
|
+
method: boolean;
|
|
718
|
+
shorthand: boolean;
|
|
719
|
+
optional?: boolean;
|
|
720
|
+
kind: 'get' | 'init' | 'set';
|
|
721
|
+
}
|
|
722
|
+
export declare interface PropertyComputedName extends PropertyBase {
|
|
723
|
+
key: PropertyNameComputed;
|
|
724
|
+
computed: true;
|
|
725
|
+
}
|
|
726
|
+
export declare type PropertyDefinition = PropertyDefinitionComputedName | PropertyDefinitionNonComputedName;
|
|
727
|
+
declare interface PropertyDefinitionBase extends BaseNode {
|
|
728
|
+
key: PropertyName;
|
|
729
|
+
value: Expression | null;
|
|
730
|
+
computed: boolean;
|
|
731
|
+
static: boolean;
|
|
732
|
+
declare: boolean;
|
|
733
|
+
readonly?: boolean;
|
|
734
|
+
decorators?: Decorator[];
|
|
735
|
+
accessibility?: Accessibility;
|
|
736
|
+
optional?: boolean;
|
|
737
|
+
definite?: boolean;
|
|
738
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
739
|
+
override?: boolean;
|
|
740
|
+
}
|
|
741
|
+
export declare interface PropertyDefinitionComputedName extends PropertyDefinitionComputedNameBase {
|
|
742
|
+
type: AST_NODE_TYPES.PropertyDefinition;
|
|
743
|
+
}
|
|
744
|
+
declare interface PropertyDefinitionComputedNameBase extends PropertyDefinitionBase {
|
|
745
|
+
key: PropertyNameComputed;
|
|
746
|
+
computed: true;
|
|
747
|
+
}
|
|
748
|
+
export declare interface PropertyDefinitionNonComputedName extends ClassPropertyDefinitionNonComputedNameBase {
|
|
749
|
+
type: AST_NODE_TYPES.PropertyDefinition;
|
|
750
|
+
}
|
|
751
|
+
declare interface PropertyDefinitionNonComputedNameBase extends PropertyDefinitionBase {
|
|
752
|
+
key: PropertyNameNonComputed;
|
|
753
|
+
computed: false;
|
|
754
|
+
}
|
|
755
|
+
export declare type PropertyName = ClassPropertyNameNonComputed | PropertyNameComputed | PropertyNameNonComputed;
|
|
756
|
+
export declare type PropertyNameComputed = Expression;
|
|
757
|
+
export declare type PropertyNameNonComputed = Identifier | NumberLiteral | StringLiteral;
|
|
758
|
+
export declare interface PropertyNonComputedName extends PropertyBase {
|
|
759
|
+
key: PropertyNameNonComputed;
|
|
760
|
+
computed: false;
|
|
761
|
+
}
|
|
762
|
+
export declare interface PunctuatorToken extends BaseToken {
|
|
763
|
+
type: AST_TOKEN_TYPES.Punctuator;
|
|
764
|
+
value: ValueOf<PunctuatorTokenToText>;
|
|
765
|
+
}
|
|
766
|
+
export declare interface PunctuatorTokenToText {
|
|
767
|
+
[SyntaxKind.OpenBraceToken]: '{';
|
|
768
|
+
[SyntaxKind.CloseBraceToken]: '}';
|
|
769
|
+
[SyntaxKind.OpenParenToken]: '(';
|
|
770
|
+
[SyntaxKind.CloseParenToken]: ')';
|
|
771
|
+
[SyntaxKind.OpenBracketToken]: '[';
|
|
772
|
+
[SyntaxKind.CloseBracketToken]: ']';
|
|
773
|
+
[SyntaxKind.DotToken]: '.';
|
|
774
|
+
[SyntaxKind.DotDotDotToken]: '...';
|
|
775
|
+
[SyntaxKind.SemicolonToken]: ';';
|
|
776
|
+
[SyntaxKind.CommaToken]: ',';
|
|
777
|
+
[SyntaxKind.QuestionDotToken]: '?.';
|
|
778
|
+
[SyntaxKind.LessThanToken]: '<';
|
|
779
|
+
[SyntaxKind.LessThanSlashToken]: '</';
|
|
780
|
+
[SyntaxKind.GreaterThanToken]: '>';
|
|
781
|
+
[SyntaxKind.LessThanEqualsToken]: '<=';
|
|
782
|
+
[SyntaxKind.GreaterThanEqualsToken]: '>=';
|
|
783
|
+
[SyntaxKind.EqualsEqualsToken]: '==';
|
|
784
|
+
[SyntaxKind.ExclamationEqualsToken]: '!=';
|
|
785
|
+
[SyntaxKind.EqualsEqualsEqualsToken]: '===';
|
|
786
|
+
[SyntaxKind.ExclamationEqualsEqualsToken]: '!==';
|
|
787
|
+
[SyntaxKind.EqualsGreaterThanToken]: '=>';
|
|
788
|
+
[SyntaxKind.PlusToken]: '+';
|
|
789
|
+
[SyntaxKind.MinusToken]: '-';
|
|
790
|
+
[SyntaxKind.AsteriskToken]: '*';
|
|
791
|
+
[SyntaxKind.AsteriskAsteriskToken]: '**';
|
|
792
|
+
[SyntaxKind.SlashToken]: '/';
|
|
793
|
+
[SyntaxKind.PercentToken]: '%';
|
|
794
|
+
[SyntaxKind.PlusPlusToken]: '++';
|
|
795
|
+
[SyntaxKind.MinusMinusToken]: '--';
|
|
796
|
+
[SyntaxKind.LessThanLessThanToken]: '<<';
|
|
797
|
+
[SyntaxKind.GreaterThanGreaterThanToken]: '>>';
|
|
798
|
+
[SyntaxKind.GreaterThanGreaterThanGreaterThanToken]: '>>>';
|
|
799
|
+
[SyntaxKind.AmpersandToken]: '&';
|
|
800
|
+
[SyntaxKind.BarToken]: '|';
|
|
801
|
+
[SyntaxKind.CaretToken]: '^';
|
|
802
|
+
[SyntaxKind.ExclamationToken]: '!';
|
|
803
|
+
[SyntaxKind.TildeToken]: '~';
|
|
804
|
+
[SyntaxKind.AmpersandAmpersandToken]: '&&';
|
|
805
|
+
[SyntaxKind.BarBarToken]: '||';
|
|
806
|
+
[SyntaxKind.QuestionToken]: '?';
|
|
807
|
+
[SyntaxKind.ColonToken]: ':';
|
|
808
|
+
[SyntaxKind.AtToken]: '@';
|
|
809
|
+
[SyntaxKind.QuestionQuestionToken]: '??';
|
|
810
|
+
[SyntaxKind.BacktickToken]: '`';
|
|
811
|
+
[SyntaxKind.HashToken]: '#';
|
|
812
|
+
[SyntaxKind.EqualsToken]: '=';
|
|
813
|
+
[SyntaxKind.PlusEqualsToken]: '+=';
|
|
814
|
+
[SyntaxKind.MinusEqualsToken]: '-=';
|
|
815
|
+
[SyntaxKind.AsteriskEqualsToken]: '*=';
|
|
816
|
+
[SyntaxKind.AsteriskAsteriskEqualsToken]: '**=';
|
|
817
|
+
[SyntaxKind.SlashEqualsToken]: '/=';
|
|
818
|
+
[SyntaxKind.PercentEqualsToken]: '%=';
|
|
819
|
+
[SyntaxKind.LessThanLessThanEqualsToken]: '<<=';
|
|
820
|
+
[SyntaxKind.GreaterThanGreaterThanEqualsToken]: '>>=';
|
|
821
|
+
[SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken]: '>>>=';
|
|
822
|
+
[SyntaxKind.AmpersandEqualsToken]: '&=';
|
|
823
|
+
[SyntaxKind.BarEqualsToken]: '|=';
|
|
824
|
+
[SyntaxKind.BarBarEqualsToken]: '||=';
|
|
825
|
+
[SyntaxKind.AmpersandAmpersandEqualsToken]: '&&=';
|
|
826
|
+
[SyntaxKind.QuestionQuestionEqualsToken]: '??=';
|
|
827
|
+
[SyntaxKind.CaretEqualsToken]: '^=';
|
|
828
|
+
}
|
|
829
|
+
/**
|
|
830
|
+
* An array of two numbers.
|
|
831
|
+
* Both numbers are a 0-based index which is the position in the array of source code characters.
|
|
832
|
+
* The first is the start position of the node, the second is the end position of the node.
|
|
833
|
+
*/
|
|
834
|
+
export declare type Range = [number, number];
|
|
835
|
+
export declare interface RegExpLiteral extends LiteralBase {
|
|
836
|
+
value: RegExp | null;
|
|
837
|
+
regex: {
|
|
838
|
+
pattern: string;
|
|
839
|
+
flags: string;
|
|
840
|
+
};
|
|
841
|
+
}
|
|
842
|
+
export declare interface RegularExpressionToken extends BaseToken {
|
|
843
|
+
type: AST_TOKEN_TYPES.RegularExpression;
|
|
844
|
+
regex: {
|
|
845
|
+
pattern: string;
|
|
846
|
+
flags: string;
|
|
847
|
+
};
|
|
848
|
+
}
|
|
849
|
+
export declare interface RestElement extends BaseNode {
|
|
850
|
+
type: AST_NODE_TYPES.RestElement;
|
|
851
|
+
argument: DestructuringPattern;
|
|
852
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
853
|
+
optional?: boolean;
|
|
854
|
+
value?: AssignmentPattern;
|
|
855
|
+
decorators?: Decorator[];
|
|
856
|
+
}
|
|
857
|
+
export declare interface ReturnStatement extends BaseNode {
|
|
858
|
+
type: AST_NODE_TYPES.ReturnStatement;
|
|
859
|
+
argument: Expression | null;
|
|
860
|
+
}
|
|
861
|
+
export declare interface SequenceExpression extends BaseNode {
|
|
862
|
+
type: AST_NODE_TYPES.SequenceExpression;
|
|
863
|
+
expressions: Expression[];
|
|
864
|
+
}
|
|
865
|
+
export declare interface SourceLocation {
|
|
866
|
+
/**
|
|
867
|
+
* The position of the first character of the parsed source region
|
|
868
|
+
*/
|
|
869
|
+
start: Position;
|
|
870
|
+
/**
|
|
871
|
+
* The position of the first character after the parsed source region
|
|
872
|
+
*/
|
|
873
|
+
end: Position;
|
|
874
|
+
}
|
|
875
|
+
export declare interface SpreadElement extends BaseNode {
|
|
876
|
+
type: AST_NODE_TYPES.SpreadElement;
|
|
877
|
+
argument: Expression;
|
|
878
|
+
}
|
|
879
|
+
export declare type Statement = BlockStatement | BreakStatement | ClassDeclaration | ContinueStatement | DebuggerStatement | DoWhileStatement | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | IfStatement | ImportDeclaration | LabeledStatement | ReturnStatement | SwitchStatement | ThrowStatement | TryStatement | TSDeclareFunction | TSEnumDeclaration | TSExportAssignment | TSImportEqualsDeclaration | TSInterfaceDeclaration | TSModuleDeclaration | TSNamespaceExportDeclaration | TSTypeAliasDeclaration | VariableDeclaration | WhileStatement | WithStatement;
|
|
880
|
+
export declare interface StaticBlock extends BaseNode {
|
|
881
|
+
type: AST_NODE_TYPES.StaticBlock;
|
|
882
|
+
body: Statement[];
|
|
883
|
+
}
|
|
884
|
+
export declare interface StringLiteral extends LiteralBase {
|
|
885
|
+
value: string;
|
|
886
|
+
}
|
|
887
|
+
export declare interface StringToken extends BaseToken {
|
|
888
|
+
type: AST_TOKEN_TYPES.String;
|
|
889
|
+
}
|
|
890
|
+
export declare interface Super extends BaseNode {
|
|
891
|
+
type: AST_NODE_TYPES.Super;
|
|
892
|
+
}
|
|
893
|
+
export declare interface SwitchCase extends BaseNode {
|
|
894
|
+
type: AST_NODE_TYPES.SwitchCase;
|
|
895
|
+
test: Expression | null;
|
|
896
|
+
consequent: Statement[];
|
|
897
|
+
}
|
|
898
|
+
export declare interface SwitchStatement extends BaseNode {
|
|
899
|
+
type: AST_NODE_TYPES.SwitchStatement;
|
|
900
|
+
discriminant: Expression;
|
|
901
|
+
cases: SwitchCase[];
|
|
902
|
+
}
|
|
903
|
+
export declare interface TaggedTemplateExpression extends BaseNode {
|
|
904
|
+
type: AST_NODE_TYPES.TaggedTemplateExpression;
|
|
905
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
906
|
+
tag: LeftHandSideExpression;
|
|
907
|
+
quasi: TemplateLiteral;
|
|
908
|
+
}
|
|
909
|
+
export declare interface TemplateElement extends BaseNode {
|
|
910
|
+
type: AST_NODE_TYPES.TemplateElement;
|
|
911
|
+
value: {
|
|
912
|
+
raw: string;
|
|
913
|
+
cooked: string;
|
|
914
|
+
};
|
|
915
|
+
tail: boolean;
|
|
916
|
+
}
|
|
917
|
+
export declare interface TemplateLiteral extends BaseNode {
|
|
918
|
+
type: AST_NODE_TYPES.TemplateLiteral;
|
|
919
|
+
quasis: TemplateElement[];
|
|
920
|
+
expressions: Expression[];
|
|
921
|
+
}
|
|
922
|
+
export declare interface TemplateToken extends BaseToken {
|
|
923
|
+
type: AST_TOKEN_TYPES.Template;
|
|
924
|
+
}
|
|
925
|
+
export declare interface ThisExpression extends BaseNode {
|
|
926
|
+
type: AST_NODE_TYPES.ThisExpression;
|
|
927
|
+
}
|
|
928
|
+
export declare interface ThrowStatement extends BaseNode {
|
|
929
|
+
type: AST_NODE_TYPES.ThrowStatement;
|
|
930
|
+
argument: Statement | TSAsExpression | null;
|
|
931
|
+
}
|
|
932
|
+
export declare type Token = BooleanToken | Comment | IdentifierToken | JSXIdentifierToken | JSXTextToken | KeywordToken | NullToken | NumericToken | PunctuatorToken | RegularExpressionToken | StringToken | TemplateToken;
|
|
933
|
+
export declare interface TryStatement extends BaseNode {
|
|
934
|
+
type: AST_NODE_TYPES.TryStatement;
|
|
935
|
+
block: BlockStatement;
|
|
936
|
+
handler: CatchClause | null;
|
|
937
|
+
finalizer: BlockStatement | null;
|
|
938
|
+
}
|
|
939
|
+
export declare interface TSAbstractKeyword extends BaseNode {
|
|
940
|
+
type: AST_NODE_TYPES.TSAbstractKeyword;
|
|
941
|
+
}
|
|
942
|
+
export declare type TSAbstractMethodDefinition = TSAbstractMethodDefinitionComputedName | TSAbstractMethodDefinitionNonComputedName;
|
|
943
|
+
export declare interface TSAbstractMethodDefinitionComputedName extends MethodDefinitionComputedNameBase {
|
|
944
|
+
type: AST_NODE_TYPES.TSAbstractMethodDefinition;
|
|
945
|
+
}
|
|
946
|
+
export declare interface TSAbstractMethodDefinitionNonComputedName extends MethodDefinitionNonComputedNameBase {
|
|
947
|
+
type: AST_NODE_TYPES.TSAbstractMethodDefinition;
|
|
948
|
+
}
|
|
949
|
+
export declare type TSAbstractPropertyDefinition = TSAbstractPropertyDefinitionComputedName | TSAbstractPropertyDefinitionNonComputedName;
|
|
950
|
+
export declare interface TSAbstractPropertyDefinitionComputedName extends PropertyDefinitionComputedNameBase {
|
|
951
|
+
type: AST_NODE_TYPES.TSAbstractPropertyDefinition;
|
|
952
|
+
value: null;
|
|
953
|
+
}
|
|
954
|
+
export declare interface TSAbstractPropertyDefinitionNonComputedName extends PropertyDefinitionNonComputedNameBase {
|
|
955
|
+
type: AST_NODE_TYPES.TSAbstractPropertyDefinition;
|
|
956
|
+
value: null;
|
|
957
|
+
}
|
|
958
|
+
export declare interface TSAnyKeyword extends BaseNode {
|
|
959
|
+
type: AST_NODE_TYPES.TSAnyKeyword;
|
|
960
|
+
}
|
|
961
|
+
export declare interface TSArrayType extends BaseNode {
|
|
962
|
+
type: AST_NODE_TYPES.TSArrayType;
|
|
963
|
+
elementType: TypeNode;
|
|
964
|
+
}
|
|
965
|
+
export declare interface TSAsExpression extends BaseNode {
|
|
966
|
+
type: AST_NODE_TYPES.TSAsExpression;
|
|
967
|
+
expression: Expression;
|
|
968
|
+
typeAnnotation: TypeNode;
|
|
969
|
+
}
|
|
970
|
+
export declare interface TSAsyncKeyword extends BaseNode {
|
|
971
|
+
type: AST_NODE_TYPES.TSAsyncKeyword;
|
|
972
|
+
}
|
|
973
|
+
export declare interface TSBigIntKeyword extends BaseNode {
|
|
974
|
+
type: AST_NODE_TYPES.TSBigIntKeyword;
|
|
975
|
+
}
|
|
976
|
+
export declare interface TSBooleanKeyword extends BaseNode {
|
|
977
|
+
type: AST_NODE_TYPES.TSBooleanKeyword;
|
|
978
|
+
}
|
|
979
|
+
export declare interface TSCallSignatureDeclaration extends TSFunctionSignatureBase {
|
|
980
|
+
type: AST_NODE_TYPES.TSCallSignatureDeclaration;
|
|
981
|
+
}
|
|
982
|
+
export declare interface TSClassImplements extends TSHeritageBase {
|
|
983
|
+
type: AST_NODE_TYPES.TSClassImplements;
|
|
984
|
+
}
|
|
985
|
+
export declare interface TSConditionalType extends BaseNode {
|
|
986
|
+
type: AST_NODE_TYPES.TSConditionalType;
|
|
987
|
+
checkType: TypeNode;
|
|
988
|
+
extendsType: TypeNode;
|
|
989
|
+
trueType: TypeNode;
|
|
990
|
+
falseType: TypeNode;
|
|
991
|
+
}
|
|
992
|
+
export declare interface TSConstructorType extends TSFunctionSignatureBase {
|
|
993
|
+
type: AST_NODE_TYPES.TSConstructorType;
|
|
994
|
+
abstract: boolean;
|
|
995
|
+
}
|
|
996
|
+
export declare interface TSConstructSignatureDeclaration extends TSFunctionSignatureBase {
|
|
997
|
+
type: AST_NODE_TYPES.TSConstructSignatureDeclaration;
|
|
998
|
+
}
|
|
999
|
+
export declare interface TSDeclareFunction extends FunctionDeclarationBase {
|
|
1000
|
+
type: AST_NODE_TYPES.TSDeclareFunction;
|
|
1001
|
+
}
|
|
1002
|
+
export declare interface TSDeclareKeyword extends BaseNode {
|
|
1003
|
+
type: AST_NODE_TYPES.TSDeclareKeyword;
|
|
1004
|
+
}
|
|
1005
|
+
export declare interface TSEmptyBodyFunctionExpression extends FunctionDeclarationBase {
|
|
1006
|
+
type: AST_NODE_TYPES.TSEmptyBodyFunctionExpression;
|
|
1007
|
+
body: null;
|
|
1008
|
+
}
|
|
1009
|
+
export declare interface TSEnumDeclaration extends BaseNode {
|
|
1010
|
+
type: AST_NODE_TYPES.TSEnumDeclaration;
|
|
1011
|
+
id: Identifier;
|
|
1012
|
+
members: TSEnumMember[];
|
|
1013
|
+
const?: boolean;
|
|
1014
|
+
declare?: boolean;
|
|
1015
|
+
modifiers?: Modifier[];
|
|
1016
|
+
}
|
|
1017
|
+
export declare type TSEnumMember = TSEnumMemberComputedName | TSEnumMemberNonComputedName;
|
|
1018
|
+
declare interface TSEnumMemberBase extends BaseNode {
|
|
1019
|
+
type: AST_NODE_TYPES.TSEnumMember;
|
|
1020
|
+
id: PropertyNameComputed | PropertyNameNonComputed;
|
|
1021
|
+
initializer?: Expression;
|
|
1022
|
+
computed?: boolean;
|
|
1023
|
+
}
|
|
1024
|
+
/**
|
|
1025
|
+
* this should only really happen in semantically invalid code (errors 1164 and 2452)
|
|
1026
|
+
*
|
|
1027
|
+
* VALID:
|
|
1028
|
+
* enum Foo { ['a'] }
|
|
1029
|
+
*
|
|
1030
|
+
* INVALID:
|
|
1031
|
+
* const x = 'a';
|
|
1032
|
+
* enum Foo { [x] }
|
|
1033
|
+
* enum Bar { ['a' + 'b'] }
|
|
1034
|
+
*/
|
|
1035
|
+
export declare interface TSEnumMemberComputedName extends TSEnumMemberBase {
|
|
1036
|
+
id: PropertyNameComputed;
|
|
1037
|
+
computed: true;
|
|
1038
|
+
}
|
|
1039
|
+
export declare interface TSEnumMemberNonComputedName extends TSEnumMemberBase {
|
|
1040
|
+
id: PropertyNameNonComputed;
|
|
1041
|
+
computed?: false;
|
|
1042
|
+
}
|
|
1043
|
+
export declare interface TSExportAssignment extends BaseNode {
|
|
1044
|
+
type: AST_NODE_TYPES.TSExportAssignment;
|
|
1045
|
+
expression: Expression;
|
|
1046
|
+
}
|
|
1047
|
+
export declare interface TSExportKeyword extends BaseNode {
|
|
1048
|
+
type: AST_NODE_TYPES.TSExportKeyword;
|
|
1049
|
+
}
|
|
1050
|
+
export declare interface TSExternalModuleReference extends BaseNode {
|
|
1051
|
+
type: AST_NODE_TYPES.TSExternalModuleReference;
|
|
1052
|
+
expression: Expression;
|
|
1053
|
+
}
|
|
1054
|
+
declare interface TSFunctionSignatureBase extends BaseNode {
|
|
1055
|
+
params: Parameter[];
|
|
1056
|
+
returnType?: TSTypeAnnotation;
|
|
1057
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
1058
|
+
}
|
|
1059
|
+
export declare interface TSFunctionType extends TSFunctionSignatureBase {
|
|
1060
|
+
type: AST_NODE_TYPES.TSFunctionType;
|
|
1061
|
+
}
|
|
1062
|
+
declare interface TSHeritageBase extends BaseNode {
|
|
1063
|
+
expression: Expression;
|
|
1064
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
1065
|
+
}
|
|
1066
|
+
export declare interface TSImportEqualsDeclaration extends BaseNode {
|
|
1067
|
+
type: AST_NODE_TYPES.TSImportEqualsDeclaration;
|
|
1068
|
+
id: Identifier;
|
|
1069
|
+
moduleReference: EntityName | TSExternalModuleReference;
|
|
1070
|
+
importKind: ImportKind;
|
|
1071
|
+
isExport: boolean;
|
|
1072
|
+
}
|
|
1073
|
+
export declare interface TSImportType extends BaseNode {
|
|
1074
|
+
type: AST_NODE_TYPES.TSImportType;
|
|
1075
|
+
isTypeOf: boolean;
|
|
1076
|
+
parameter: TypeNode;
|
|
1077
|
+
qualifier: EntityName | null;
|
|
1078
|
+
typeParameters: TSTypeParameterInstantiation | null;
|
|
1079
|
+
}
|
|
1080
|
+
export declare interface TSIndexedAccessType extends BaseNode {
|
|
1081
|
+
type: AST_NODE_TYPES.TSIndexedAccessType;
|
|
1082
|
+
objectType: TypeNode;
|
|
1083
|
+
indexType: TypeNode;
|
|
1084
|
+
}
|
|
1085
|
+
export declare interface TSIndexSignature extends BaseNode {
|
|
1086
|
+
type: AST_NODE_TYPES.TSIndexSignature;
|
|
1087
|
+
parameters: Parameter[];
|
|
1088
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
1089
|
+
readonly?: boolean;
|
|
1090
|
+
accessibility?: Accessibility;
|
|
1091
|
+
export?: boolean;
|
|
1092
|
+
static?: boolean;
|
|
1093
|
+
}
|
|
1094
|
+
export declare interface TSInferType extends BaseNode {
|
|
1095
|
+
type: AST_NODE_TYPES.TSInferType;
|
|
1096
|
+
typeParameter: TSTypeParameter;
|
|
1097
|
+
}
|
|
1098
|
+
export declare interface TSInterfaceBody extends BaseNode {
|
|
1099
|
+
type: AST_NODE_TYPES.TSInterfaceBody;
|
|
1100
|
+
body: TypeElement[];
|
|
1101
|
+
}
|
|
1102
|
+
export declare interface TSInterfaceDeclaration extends BaseNode {
|
|
1103
|
+
type: AST_NODE_TYPES.TSInterfaceDeclaration;
|
|
1104
|
+
body: TSInterfaceBody;
|
|
1105
|
+
id: Identifier;
|
|
1106
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
1107
|
+
extends?: TSInterfaceHeritage[];
|
|
1108
|
+
implements?: TSInterfaceHeritage[];
|
|
1109
|
+
abstract?: boolean;
|
|
1110
|
+
declare?: boolean;
|
|
1111
|
+
}
|
|
1112
|
+
export declare interface TSInterfaceHeritage extends TSHeritageBase {
|
|
1113
|
+
type: AST_NODE_TYPES.TSInterfaceHeritage;
|
|
1114
|
+
}
|
|
1115
|
+
export declare interface TSIntersectionType extends BaseNode {
|
|
1116
|
+
type: AST_NODE_TYPES.TSIntersectionType;
|
|
1117
|
+
types: TypeNode[];
|
|
1118
|
+
}
|
|
1119
|
+
declare interface TSIntrinsicKeyword extends BaseNode {
|
|
1120
|
+
type: AST_NODE_TYPES.TSIntrinsicKeyword;
|
|
1121
|
+
}
|
|
1122
|
+
export declare interface TSLiteralType extends BaseNode {
|
|
1123
|
+
type: AST_NODE_TYPES.TSLiteralType;
|
|
1124
|
+
literal: LiteralExpression | UnaryExpression | UpdateExpression;
|
|
1125
|
+
}
|
|
1126
|
+
export declare interface TSMappedType extends BaseNode {
|
|
1127
|
+
type: AST_NODE_TYPES.TSMappedType;
|
|
1128
|
+
typeParameter: TSTypeParameter;
|
|
1129
|
+
readonly?: boolean | '-' | '+';
|
|
1130
|
+
optional?: boolean | '-' | '+';
|
|
1131
|
+
typeAnnotation?: TypeNode;
|
|
1132
|
+
nameType: TypeNode | null;
|
|
1133
|
+
}
|
|
1134
|
+
export declare type TSMethodSignature = TSMethodSignatureComputedName | TSMethodSignatureNonComputedName;
|
|
1135
|
+
declare interface TSMethodSignatureBase extends BaseNode {
|
|
1136
|
+
type: AST_NODE_TYPES.TSMethodSignature;
|
|
1137
|
+
key: PropertyName;
|
|
1138
|
+
computed: boolean;
|
|
1139
|
+
params: Parameter[];
|
|
1140
|
+
optional?: boolean;
|
|
1141
|
+
returnType?: TSTypeAnnotation;
|
|
1142
|
+
readonly?: boolean;
|
|
1143
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
1144
|
+
accessibility?: Accessibility;
|
|
1145
|
+
export?: boolean;
|
|
1146
|
+
static?: boolean;
|
|
1147
|
+
kind: 'get' | 'method' | 'set';
|
|
1148
|
+
}
|
|
1149
|
+
export declare interface TSMethodSignatureComputedName extends TSMethodSignatureBase {
|
|
1150
|
+
key: PropertyNameComputed;
|
|
1151
|
+
computed: true;
|
|
1152
|
+
}
|
|
1153
|
+
export declare interface TSMethodSignatureNonComputedName extends TSMethodSignatureBase {
|
|
1154
|
+
key: PropertyNameNonComputed;
|
|
1155
|
+
computed: false;
|
|
1156
|
+
}
|
|
1157
|
+
export declare interface TSModuleBlock extends BaseNode {
|
|
1158
|
+
type: AST_NODE_TYPES.TSModuleBlock;
|
|
1159
|
+
body: ProgramStatement[];
|
|
1160
|
+
}
|
|
1161
|
+
export declare interface TSModuleDeclaration extends BaseNode {
|
|
1162
|
+
type: AST_NODE_TYPES.TSModuleDeclaration;
|
|
1163
|
+
id: Identifier | Literal;
|
|
1164
|
+
body?: TSModuleBlock | TSModuleDeclaration;
|
|
1165
|
+
global?: boolean;
|
|
1166
|
+
declare?: boolean;
|
|
1167
|
+
modifiers?: Modifier[];
|
|
1168
|
+
}
|
|
1169
|
+
export declare interface TSNamedTupleMember extends BaseNode {
|
|
1170
|
+
type: AST_NODE_TYPES.TSNamedTupleMember;
|
|
1171
|
+
elementType: TypeNode;
|
|
1172
|
+
label: Identifier;
|
|
1173
|
+
optional: boolean;
|
|
1174
|
+
}
|
|
1175
|
+
export declare interface TSNamespaceExportDeclaration extends BaseNode {
|
|
1176
|
+
type: AST_NODE_TYPES.TSNamespaceExportDeclaration;
|
|
1177
|
+
id: Identifier;
|
|
1178
|
+
}
|
|
1179
|
+
export declare interface TSNeverKeyword extends BaseNode {
|
|
1180
|
+
type: AST_NODE_TYPES.TSNeverKeyword;
|
|
1181
|
+
}
|
|
1182
|
+
export declare interface TSNonNullExpression extends BaseNode {
|
|
1183
|
+
type: AST_NODE_TYPES.TSNonNullExpression;
|
|
1184
|
+
expression: Expression;
|
|
1185
|
+
}
|
|
1186
|
+
export declare interface TSNullKeyword extends BaseNode {
|
|
1187
|
+
type: AST_NODE_TYPES.TSNullKeyword;
|
|
1188
|
+
}
|
|
1189
|
+
export declare interface TSNumberKeyword extends BaseNode {
|
|
1190
|
+
type: AST_NODE_TYPES.TSNumberKeyword;
|
|
1191
|
+
}
|
|
1192
|
+
export declare interface TSObjectKeyword extends BaseNode {
|
|
1193
|
+
type: AST_NODE_TYPES.TSObjectKeyword;
|
|
1194
|
+
}
|
|
1195
|
+
export declare interface TSOptionalType extends BaseNode {
|
|
1196
|
+
type: AST_NODE_TYPES.TSOptionalType;
|
|
1197
|
+
typeAnnotation: TypeNode;
|
|
1198
|
+
}
|
|
1199
|
+
export declare interface TSParameterProperty extends BaseNode {
|
|
1200
|
+
type: AST_NODE_TYPES.TSParameterProperty;
|
|
1201
|
+
accessibility?: Accessibility;
|
|
1202
|
+
readonly?: boolean;
|
|
1203
|
+
static?: boolean;
|
|
1204
|
+
export?: boolean;
|
|
1205
|
+
override?: boolean;
|
|
1206
|
+
parameter: AssignmentPattern | BindingName | RestElement;
|
|
1207
|
+
decorators?: Decorator[];
|
|
1208
|
+
}
|
|
1209
|
+
export declare interface TSPrivateKeyword extends BaseNode {
|
|
1210
|
+
type: AST_NODE_TYPES.TSPrivateKeyword;
|
|
1211
|
+
}
|
|
1212
|
+
export declare type TSPropertySignature = TSPropertySignatureComputedName | TSPropertySignatureNonComputedName;
|
|
1213
|
+
declare interface TSPropertySignatureBase extends BaseNode {
|
|
1214
|
+
type: AST_NODE_TYPES.TSPropertySignature;
|
|
1215
|
+
key: PropertyName;
|
|
1216
|
+
optional?: boolean;
|
|
1217
|
+
computed: boolean;
|
|
1218
|
+
typeAnnotation?: TSTypeAnnotation;
|
|
1219
|
+
initializer?: Expression;
|
|
1220
|
+
readonly?: boolean;
|
|
1221
|
+
static?: boolean;
|
|
1222
|
+
export?: boolean;
|
|
1223
|
+
accessibility?: Accessibility;
|
|
1224
|
+
}
|
|
1225
|
+
export declare interface TSPropertySignatureComputedName extends TSPropertySignatureBase {
|
|
1226
|
+
key: PropertyNameComputed;
|
|
1227
|
+
computed: true;
|
|
1228
|
+
}
|
|
1229
|
+
export declare interface TSPropertySignatureNonComputedName extends TSPropertySignatureBase {
|
|
1230
|
+
key: PropertyNameNonComputed;
|
|
1231
|
+
computed: false;
|
|
1232
|
+
}
|
|
1233
|
+
export declare interface TSProtectedKeyword extends BaseNode {
|
|
1234
|
+
type: AST_NODE_TYPES.TSProtectedKeyword;
|
|
1235
|
+
}
|
|
1236
|
+
export declare interface TSPublicKeyword extends BaseNode {
|
|
1237
|
+
type: AST_NODE_TYPES.TSPublicKeyword;
|
|
1238
|
+
}
|
|
1239
|
+
export declare interface TSQualifiedName extends BaseNode {
|
|
1240
|
+
type: AST_NODE_TYPES.TSQualifiedName;
|
|
1241
|
+
left: EntityName;
|
|
1242
|
+
right: Identifier;
|
|
1243
|
+
}
|
|
1244
|
+
export declare interface TSReadonlyKeyword extends BaseNode {
|
|
1245
|
+
type: AST_NODE_TYPES.TSReadonlyKeyword;
|
|
1246
|
+
}
|
|
1247
|
+
export declare interface TSRestType extends BaseNode {
|
|
1248
|
+
type: AST_NODE_TYPES.TSRestType;
|
|
1249
|
+
typeAnnotation: TypeNode;
|
|
1250
|
+
}
|
|
1251
|
+
export declare interface TSStaticKeyword extends BaseNode {
|
|
1252
|
+
type: AST_NODE_TYPES.TSStaticKeyword;
|
|
1253
|
+
}
|
|
1254
|
+
export declare interface TSStringKeyword extends BaseNode {
|
|
1255
|
+
type: AST_NODE_TYPES.TSStringKeyword;
|
|
1256
|
+
}
|
|
1257
|
+
export declare interface TSSymbolKeyword extends BaseNode {
|
|
1258
|
+
type: AST_NODE_TYPES.TSSymbolKeyword;
|
|
1259
|
+
}
|
|
1260
|
+
export declare interface TSTemplateLiteralType extends BaseNode {
|
|
1261
|
+
type: AST_NODE_TYPES.TSTemplateLiteralType;
|
|
1262
|
+
quasis: TemplateElement[];
|
|
1263
|
+
types: TypeNode[];
|
|
1264
|
+
}
|
|
1265
|
+
export declare interface TSThisType extends BaseNode {
|
|
1266
|
+
type: AST_NODE_TYPES.TSThisType;
|
|
1267
|
+
}
|
|
1268
|
+
export declare interface TSTupleType extends BaseNode {
|
|
1269
|
+
type: AST_NODE_TYPES.TSTupleType;
|
|
1270
|
+
elementTypes: TypeNode[];
|
|
1271
|
+
}
|
|
1272
|
+
export declare interface TSTypeAliasDeclaration extends BaseNode {
|
|
1273
|
+
type: AST_NODE_TYPES.TSTypeAliasDeclaration;
|
|
1274
|
+
id: Identifier;
|
|
1275
|
+
typeAnnotation: TypeNode;
|
|
1276
|
+
declare?: boolean;
|
|
1277
|
+
typeParameters?: TSTypeParameterDeclaration;
|
|
1278
|
+
}
|
|
1279
|
+
export declare interface TSTypeAnnotation extends BaseNode {
|
|
1280
|
+
type: AST_NODE_TYPES.TSTypeAnnotation;
|
|
1281
|
+
typeAnnotation: TypeNode;
|
|
1282
|
+
}
|
|
1283
|
+
export declare interface TSTypeAssertion extends BaseNode {
|
|
1284
|
+
type: AST_NODE_TYPES.TSTypeAssertion;
|
|
1285
|
+
typeAnnotation: TypeNode;
|
|
1286
|
+
expression: Expression;
|
|
1287
|
+
}
|
|
1288
|
+
export declare interface TSTypeLiteral extends BaseNode {
|
|
1289
|
+
type: AST_NODE_TYPES.TSTypeLiteral;
|
|
1290
|
+
members: TypeElement[];
|
|
1291
|
+
}
|
|
1292
|
+
export declare interface TSTypeOperator extends BaseNode {
|
|
1293
|
+
type: AST_NODE_TYPES.TSTypeOperator;
|
|
1294
|
+
operator: 'keyof' | 'readonly' | 'unique';
|
|
1295
|
+
typeAnnotation?: TypeNode;
|
|
1296
|
+
}
|
|
1297
|
+
export declare interface TSTypeParameter extends BaseNode {
|
|
1298
|
+
type: AST_NODE_TYPES.TSTypeParameter;
|
|
1299
|
+
name: Identifier;
|
|
1300
|
+
constraint?: TypeNode;
|
|
1301
|
+
default?: TypeNode;
|
|
1302
|
+
}
|
|
1303
|
+
export declare interface TSTypeParameterDeclaration extends BaseNode {
|
|
1304
|
+
type: AST_NODE_TYPES.TSTypeParameterDeclaration;
|
|
1305
|
+
params: TSTypeParameter[];
|
|
1306
|
+
}
|
|
1307
|
+
export declare interface TSTypeParameterInstantiation extends BaseNode {
|
|
1308
|
+
type: AST_NODE_TYPES.TSTypeParameterInstantiation;
|
|
1309
|
+
params: TypeNode[];
|
|
1310
|
+
}
|
|
1311
|
+
export declare interface TSTypePredicate extends BaseNode {
|
|
1312
|
+
type: AST_NODE_TYPES.TSTypePredicate;
|
|
1313
|
+
asserts: boolean;
|
|
1314
|
+
parameterName: Identifier | TSThisType;
|
|
1315
|
+
typeAnnotation: TSTypeAnnotation | null;
|
|
1316
|
+
}
|
|
1317
|
+
export declare interface TSTypeQuery extends BaseNode {
|
|
1318
|
+
type: AST_NODE_TYPES.TSTypeQuery;
|
|
1319
|
+
exprName: EntityName;
|
|
1320
|
+
}
|
|
1321
|
+
export declare interface TSTypeReference extends BaseNode {
|
|
1322
|
+
type: AST_NODE_TYPES.TSTypeReference;
|
|
1323
|
+
typeName: EntityName;
|
|
1324
|
+
typeParameters?: TSTypeParameterInstantiation;
|
|
1325
|
+
}
|
|
1326
|
+
export declare type TSUnaryExpression = AwaitExpression | LeftHandSideExpression | UnaryExpression | UpdateExpression;
|
|
1327
|
+
export declare interface TSUndefinedKeyword extends BaseNode {
|
|
1328
|
+
type: AST_NODE_TYPES.TSUndefinedKeyword;
|
|
1329
|
+
}
|
|
1330
|
+
export declare interface TSUnionType extends BaseNode {
|
|
1331
|
+
type: AST_NODE_TYPES.TSUnionType;
|
|
1332
|
+
types: TypeNode[];
|
|
1333
|
+
}
|
|
1334
|
+
export declare interface TSUnknownKeyword extends BaseNode {
|
|
1335
|
+
type: AST_NODE_TYPES.TSUnknownKeyword;
|
|
1336
|
+
}
|
|
1337
|
+
export declare interface TSVoidKeyword extends BaseNode {
|
|
1338
|
+
type: AST_NODE_TYPES.TSVoidKeyword;
|
|
1339
|
+
}
|
|
1340
|
+
export declare type TypeElement = TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSIndexSignature | TSMethodSignature | TSPropertySignature;
|
|
1341
|
+
export declare type TypeNode = TSAnyKeyword | TSArrayType | TSBigIntKeyword | TSBooleanKeyword | TSConditionalType | TSConstructorType | TSFunctionType | TSImportType | TSIndexedAccessType | TSInferType | TSIntersectionType | TSIntrinsicKeyword | TSLiteralType | TSMappedType | TSNamedTupleMember | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSOptionalType | TSRestType | TSStringKeyword | TSSymbolKeyword | TSTemplateLiteralType | TSThisType | TSTupleType | TSTypeLiteral | TSTypeOperator | TSTypePredicate | TSTypeQuery | TSTypeReference | TSUndefinedKeyword | TSUnionType | TSUnknownKeyword | TSVoidKeyword;
|
|
1342
|
+
export declare interface UnaryExpression extends UnaryExpressionBase {
|
|
1343
|
+
type: AST_NODE_TYPES.UnaryExpression;
|
|
1344
|
+
operator: '-' | '!' | '+' | '~' | 'delete' | 'typeof' | 'void';
|
|
1345
|
+
}
|
|
1346
|
+
declare interface UnaryExpressionBase extends BaseNode {
|
|
1347
|
+
operator: string;
|
|
1348
|
+
prefix: boolean;
|
|
1349
|
+
argument: LeftHandSideExpression | Literal | UnaryExpression;
|
|
1350
|
+
}
|
|
1351
|
+
export declare interface UpdateExpression extends UnaryExpressionBase {
|
|
1352
|
+
type: AST_NODE_TYPES.UpdateExpression;
|
|
1353
|
+
operator: '--' | '++';
|
|
1354
|
+
}
|
|
1355
|
+
declare type ValueOf<T> = T[keyof T];
|
|
1356
|
+
export declare interface VariableDeclaration extends BaseNode {
|
|
1357
|
+
type: AST_NODE_TYPES.VariableDeclaration;
|
|
1358
|
+
declarations: VariableDeclarator[];
|
|
1359
|
+
kind: 'const' | 'let' | 'var';
|
|
1360
|
+
declare?: boolean;
|
|
1361
|
+
}
|
|
1362
|
+
export declare interface VariableDeclarator extends BaseNode {
|
|
1363
|
+
type: AST_NODE_TYPES.VariableDeclarator;
|
|
1364
|
+
id: BindingName;
|
|
1365
|
+
init: Expression | null;
|
|
1366
|
+
definite?: boolean;
|
|
1367
|
+
}
|
|
1368
|
+
export declare interface WhileStatement extends BaseNode {
|
|
1369
|
+
type: AST_NODE_TYPES.WhileStatement;
|
|
1370
|
+
test: Expression;
|
|
1371
|
+
body: Statement;
|
|
1372
|
+
}
|
|
1373
|
+
export declare interface WithStatement extends BaseNode {
|
|
1374
|
+
type: AST_NODE_TYPES.WithStatement;
|
|
1375
|
+
object: Expression;
|
|
1376
|
+
body: Statement;
|
|
1377
|
+
}
|
|
1378
|
+
export declare interface YieldExpression extends BaseNode {
|
|
1379
|
+
type: AST_NODE_TYPES.YieldExpression;
|
|
1380
|
+
delegate: boolean;
|
|
1381
|
+
argument?: Expression;
|
|
1382
|
+
}
|
|
1383
|
+
export {};
|
|
1384
|
+
//# sourceMappingURL=ast-spec.d.ts.map
|