@typescript-eslint/type-utils 8.44.2-alpha.4 → 8.44.2-alpha.6

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.
Files changed (43) hide show
  1. package/dist/TypeOrValueSpecifier.d.ts +0 -1
  2. package/dist/builtinSymbolLikes.d.ts +0 -1
  3. package/dist/containsAllTypesByName.d.ts +0 -1
  4. package/dist/discriminateAnyType.d.ts +0 -1
  5. package/dist/getConstrainedTypeAtLocation.d.ts +0 -1
  6. package/dist/getContextualType.d.ts +0 -1
  7. package/dist/getDeclaration.d.ts +0 -1
  8. package/dist/getSourceFileOfNode.d.ts +0 -1
  9. package/dist/getTypeName.d.ts +0 -1
  10. package/dist/index.d.ts +0 -1
  11. package/dist/isSymbolFromDefaultLibrary.d.ts +0 -1
  12. package/dist/isTypeReadonly.d.ts +0 -1
  13. package/dist/isUnsafeAssignment.d.ts +0 -1
  14. package/dist/predicates.d.ts +0 -1
  15. package/dist/propertyTypes.d.ts +0 -1
  16. package/dist/requiresQuoting.d.ts +0 -1
  17. package/dist/typeFlagUtils.d.ts +0 -1
  18. package/dist/typeOrValueSpecifiers/specifierNameMatches.d.ts +0 -1
  19. package/dist/typeOrValueSpecifiers/typeDeclaredInFile.d.ts +0 -1
  20. package/dist/typeOrValueSpecifiers/typeDeclaredInLib.d.ts +0 -1
  21. package/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.d.ts +0 -1
  22. package/package.json +5 -5
  23. package/dist/TypeOrValueSpecifier.d.ts.map +0 -1
  24. package/dist/builtinSymbolLikes.d.ts.map +0 -1
  25. package/dist/containsAllTypesByName.d.ts.map +0 -1
  26. package/dist/discriminateAnyType.d.ts.map +0 -1
  27. package/dist/getConstrainedTypeAtLocation.d.ts.map +0 -1
  28. package/dist/getContextualType.d.ts.map +0 -1
  29. package/dist/getDeclaration.d.ts.map +0 -1
  30. package/dist/getSourceFileOfNode.d.ts.map +0 -1
  31. package/dist/getTypeName.d.ts.map +0 -1
  32. package/dist/index.d.ts.map +0 -1
  33. package/dist/isSymbolFromDefaultLibrary.d.ts.map +0 -1
  34. package/dist/isTypeReadonly.d.ts.map +0 -1
  35. package/dist/isUnsafeAssignment.d.ts.map +0 -1
  36. package/dist/predicates.d.ts.map +0 -1
  37. package/dist/propertyTypes.d.ts.map +0 -1
  38. package/dist/requiresQuoting.d.ts.map +0 -1
  39. package/dist/typeFlagUtils.d.ts.map +0 -1
  40. package/dist/typeOrValueSpecifiers/specifierNameMatches.d.ts.map +0 -1
  41. package/dist/typeOrValueSpecifiers/typeDeclaredInFile.d.ts.map +0 -1
  42. package/dist/typeOrValueSpecifiers/typeDeclaredInLib.d.ts.map +0 -1
  43. package/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.d.ts.map +0 -1
@@ -130,4 +130,3 @@ export declare function typeMatchesSpecifier(type: ts.Type, specifier: TypeOrVal
130
130
  export declare const typeMatchesSomeSpecifier: (type: ts.Type, specifiers: TypeOrValueSpecifier[] | undefined, program: ts.Program) => boolean;
131
131
  export declare function valueMatchesSpecifier(node: TSESTree.Node, specifier: TypeOrValueSpecifier, program: ts.Program, type: ts.Type): boolean;
132
132
  export declare const valueMatchesSomeSpecifier: (node: TSESTree.Node, specifiers: TypeOrValueSpecifier[] | undefined, program: ts.Program, type: ts.Type) => boolean;
133
- //# sourceMappingURL=TypeOrValueSpecifier.d.ts.map
@@ -51,4 +51,3 @@ export declare function isBuiltinTypeAliasLike(program: ts.Program, type: ts.Typ
51
51
  } & ts.Type) => boolean): boolean;
52
52
  export declare function isBuiltinSymbolLike(program: ts.Program, type: ts.Type, symbolName: string | string[]): boolean;
53
53
  export declare function isBuiltinSymbolLikeRecurser(program: ts.Program, type: ts.Type, predicate: (subType: ts.Type) => boolean | null): boolean;
54
- //# sourceMappingURL=builtinSymbolLikes.d.ts.map
@@ -7,4 +7,3 @@ import * as ts from 'typescript';
7
7
  * @returns Whether the type is, extends, or contains the allowed names (or all matches the allowed names, if mustMatchAll is true).
8
8
  */
9
9
  export declare function containsAllTypesByName(type: ts.Type, allowAny: boolean, allowedNames: Set<string>, matchAnyInstead?: boolean): boolean;
10
- //# sourceMappingURL=containsAllTypesByName.d.ts.map
@@ -10,4 +10,3 @@ export declare enum AnyType {
10
10
  * otherwise it returns `AnyType.Safe`.
11
11
  */
12
12
  export declare function discriminateAnyType(type: ts.Type, checker: ts.TypeChecker, program: ts.Program, tsNode: ts.Node): AnyType;
13
- //# sourceMappingURL=discriminateAnyType.d.ts.map
@@ -10,4 +10,3 @@ import type * as ts from 'typescript';
10
10
  * @see https://github.com/typescript-eslint/typescript-eslint/issues/10438
11
11
  */
12
12
  export declare function getConstrainedTypeAtLocation(services: ParserServicesWithTypeInformation, node: TSESTree.Node): ts.Type;
13
- //# sourceMappingURL=getConstrainedTypeAtLocation.d.ts.map
@@ -5,4 +5,3 @@ import * as ts from 'typescript';
5
5
  * i.e. the type of a called function's parameter, or the defined type of a variable declaration
6
6
  */
7
7
  export declare function getContextualType(checker: ts.TypeChecker, node: ts.Expression): ts.Type | undefined;
8
- //# sourceMappingURL=getContextualType.d.ts.map
@@ -4,4 +4,3 @@ import type * as ts from 'typescript';
4
4
  * Gets the declaration for the given variable
5
5
  */
6
6
  export declare function getDeclaration(services: ParserServicesWithTypeInformation, node: TSESTree.Node): ts.Declaration | null;
7
- //# sourceMappingURL=getDeclaration.d.ts.map
@@ -4,4 +4,3 @@ import * as ts from 'typescript';
4
4
  * Gets the source file for a given node
5
5
  */
6
6
  export declare function getSourceFileOfNode(node: ts.Node): ts.SourceFile;
7
- //# sourceMappingURL=getSourceFileOfNode.d.ts.map
@@ -5,4 +5,3 @@ import * as ts from 'typescript';
5
5
  * @param type The type to get the name of.
6
6
  */
7
7
  export declare function getTypeName(typeChecker: ts.TypeChecker, type: ts.Type): string;
8
- //# sourceMappingURL=getTypeName.d.ts.map
package/dist/index.d.ts CHANGED
@@ -15,4 +15,3 @@ export * from './typeFlagUtils';
15
15
  export * from './TypeOrValueSpecifier';
16
16
  export * from './discriminateAnyType';
17
17
  export { getDecorators, getModifiers, typescriptVersionIsAtLeast, } from '@typescript-eslint/typescript-estree';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type * as ts from 'typescript';
2
2
  export declare function isSymbolFromDefaultLibrary(program: ts.Program, symbol: ts.Symbol | undefined): boolean;
3
- //# sourceMappingURL=isSymbolFromDefaultLibrary.d.ts.map
@@ -98,4 +98,3 @@ export declare const readonlynessOptionsDefaults: ReadonlynessOptions;
98
98
  * Checks if the given type is readonly
99
99
  */
100
100
  export declare function isTypeReadonly(program: ts.Program, type: ts.Type, options?: ReadonlynessOptions): boolean;
101
- //# sourceMappingURL=isTypeReadonly.d.ts.map
@@ -14,4 +14,3 @@ export declare function isUnsafeAssignment(type: ts.Type, receiver: ts.Type, che
14
14
  receiver: ts.Type;
15
15
  sender: ts.Type;
16
16
  };
17
- //# sourceMappingURL=isUnsafeAssignment.d.ts.map
@@ -35,4 +35,3 @@ export declare function isTypeUnknownArrayType(type: ts.Type, checker: ts.TypeCh
35
35
  export declare function typeIsOrHasBaseType(type: ts.Type, parentType: ts.Type): boolean;
36
36
  export declare function isTypeBigIntLiteralType(type: ts.Type): type is ts.BigIntLiteralType;
37
37
  export declare function isTypeTemplateLiteralType(type: ts.Type): type is ts.TemplateLiteralType;
38
- //# sourceMappingURL=predicates.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import type * as ts from 'typescript';
2
2
  export declare function getTypeOfPropertyOfName(checker: ts.TypeChecker, type: ts.Type, name: string, escapedName?: ts.__String): ts.Type | undefined;
3
3
  export declare function getTypeOfPropertyOfType(checker: ts.TypeChecker, type: ts.Type, property: ts.Symbol): ts.Type | undefined;
4
- //# sourceMappingURL=propertyTypes.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import * as ts from 'typescript';
2
2
  /*** Indicates whether identifiers require the use of quotation marks when accessing property definitions and dot notation. */
3
3
  export declare function requiresQuoting(name: string, target?: ts.ScriptTarget): boolean;
4
- //# sourceMappingURL=requiresQuoting.d.ts.map
@@ -15,4 +15,3 @@ export declare function getTypeFlags(type: ts.Type): ts.TypeFlags;
15
15
  export declare function isTypeFlagSet(type: ts.Type, flagsToCheck: ts.TypeFlags,
16
16
  /** @deprecated This params is not used and will be removed in the future.*/
17
17
  isReceiver?: boolean): boolean;
18
- //# sourceMappingURL=typeFlagUtils.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type * as ts from 'typescript';
2
2
  export declare function specifierNameMatches(type: ts.Type, names: string | string[]): boolean;
3
- //# sourceMappingURL=specifierNameMatches.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type * as ts from 'typescript';
2
2
  export declare function typeDeclaredInFile(relativePath: string | undefined, declarationFiles: ts.SourceFile[], program: ts.Program): boolean;
3
- //# sourceMappingURL=typeDeclaredInFile.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type * as ts from 'typescript';
2
2
  export declare function typeDeclaredInLib(declarationFiles: ts.SourceFile[], program: ts.Program): boolean;
3
- //# sourceMappingURL=typeDeclaredInLib.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import * as ts from 'typescript';
2
2
  export declare function typeDeclaredInPackageDeclarationFile(packageName: string, declarations: ts.Node[], declarationFiles: ts.SourceFile[], program: ts.Program): boolean;
3
- //# sourceMappingURL=typeDeclaredInPackageDeclarationFile.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/type-utils",
3
- "version": "8.44.2-alpha.4",
3
+ "version": "8.44.2-alpha.6",
4
4
  "description": "Type utilities for working with TypeScript + ESLint together",
5
5
  "files": [
6
6
  "dist",
@@ -44,9 +44,9 @@
44
44
  "typecheck": "yarn run -BT nx typecheck"
45
45
  },
46
46
  "dependencies": {
47
- "@typescript-eslint/types": "8.44.2-alpha.4",
48
- "@typescript-eslint/typescript-estree": "8.44.2-alpha.4",
49
- "@typescript-eslint/utils": "8.44.2-alpha.4",
47
+ "@typescript-eslint/types": "8.44.2-alpha.6",
48
+ "@typescript-eslint/typescript-estree": "8.44.2-alpha.6",
49
+ "@typescript-eslint/utils": "8.44.2-alpha.6",
50
50
  "debug": "^4.3.4",
51
51
  "ts-api-utils": "^2.1.0"
52
52
  },
@@ -55,7 +55,7 @@
55
55
  "typescript": ">=4.8.4 <6.0.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@typescript-eslint/parser": "8.44.2-alpha.4",
58
+ "@typescript-eslint/parser": "8.44.2-alpha.6",
59
59
  "@vitest/coverage-v8": "^3.1.3",
60
60
  "ajv": "^6.12.6",
61
61
  "eslint": "*",
@@ -1 +0,0 @@
1
- {"version":3,"file":"TypeOrValueSpecifier.d.ts","sourceRoot":"","sources":["../src/TypeOrValueSpecifier.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAUtC;;;GAGG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAExB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,KAAK,CAAC;IAEZ;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CACzB;AAED;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,SAAS,CAAC;IAEhB;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAExB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;;GAGG;AACH,MAAM,MAAM,oBAAoB,GAC5B,MAAM,GACN,aAAa,GACb,YAAY,GACZ,gBAAgB,CAAC;AAErB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6FR,CAAC;AAEjC,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,SAAS,EAAE,oBAAoB,EAC/B,OAAO,EAAE,EAAE,CAAC,OAAO,GAClB,OAAO,CAiDT;AAED,eAAO,MAAM,wBAAwB,GACnC,MAAM,EAAE,CAAC,IAAI,EACb,YAAY,oBAAoB,EAAE,YAAK,EACvC,SAAS,EAAE,CAAC,OAAO,KAClB,OAC2E,CAAC;AAsB/E,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,QAAQ,CAAC,IAAI,EACnB,SAAS,EAAE,oBAAoB,EAC/B,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,OAAO,CA6BT;AAED,eAAO,MAAM,yBAAyB,GACpC,MAAM,QAAQ,CAAC,IAAI,EACnB,YAAY,oBAAoB,EAAE,YAAK,EACvC,SAAS,EAAE,CAAC,OAAO,EACnB,MAAM,EAAE,CAAC,IAAI,KACZ,OAGA,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"builtinSymbolLikes.d.ts","sourceRoot":"","sources":["../src/builtinSymbolLikes.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAIjC;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CAEzE;AAED;;;;;;;GAOG;AACH,wBAAgB,wBAAwB,CACtC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,OAAO,CAET;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CAEvE;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CACjC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,OAAO,CAQT;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,SAAS,CAAC,EAAE,CACV,OAAO,EAAE;IACP,WAAW,EAAE,EAAE,CAAC,MAAM,CAAC;IACvB,kBAAkB,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,CAAC;CACxC,GAAG,EAAE,CAAC,IAAI,KACR,OAAO,GACX,OAAO,CAMT;AACD,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,SAAS,EAAE,CACT,OAAO,EAAE;IACP,WAAW,EAAE,EAAE,CAAC,MAAM,CAAC;IACvB,kBAAkB,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,CAAC;CACxC,GAAG,EAAE,CAAC,IAAI,KACR,OAAO,GACX,OAAO,CAsBT;AAED,wBAAgB,mBAAmB,CACjC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAC5B,OAAO,CAoBT;AAED,wBAAgB,2BAA2B,CACzC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,SAAS,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,KAAK,OAAO,GAAG,IAAI,GAC9C,OAAO,CAuCT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"containsAllTypesByName.d.ts","sourceRoot":"","sources":["../src/containsAllTypesByName.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAIjC;;;;;;GAMG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,QAAQ,EAAE,OAAO,EACjB,YAAY,EAAE,GAAG,CAAC,MAAM,CAAC,EACzB,eAAe,UAAQ,GACtB,OAAO,CA+BT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"discriminateAnyType.d.ts","sourceRoot":"","sources":["../src/discriminateAnyType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAMtC,oBAAY,OAAO;IACjB,GAAG,IAAA;IACH,UAAU,IAAA;IACV,QAAQ,IAAA;IACR,IAAI,IAAA;CACL;AACD;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,MAAM,EAAE,EAAE,CAAC,IAAI,GACd,OAAO,CAET"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getConstrainedTypeAtLocation.d.ts","sourceRoot":"","sources":["../src/getConstrainedTypeAtLocation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iCAAiC,EACjC,QAAQ,EACT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC;;;;;;;;GAQG;AACH,wBAAgB,4BAA4B,CAC1C,QAAQ,EAAE,iCAAiC,EAC3C,IAAI,EAAE,QAAQ,CAAC,IAAI,GAClB,EAAE,CAAC,IAAI,CAOT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getContextualType.d.ts","sourceRoot":"","sources":["../src/getContextualType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAEjC;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,IAAI,EAAE,EAAE,CAAC,UAAU,GAClB,EAAE,CAAC,IAAI,GAAG,SAAS,CAwCrB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getDeclaration.d.ts","sourceRoot":"","sources":["../src/getDeclaration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iCAAiC,EACjC,QAAQ,EACT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC;;GAEG;AACH,wBAAgB,cAAc,CAC5B,QAAQ,EAAE,iCAAiC,EAC3C,IAAI,EAAE,QAAQ,CAAC,IAAI,GAClB,EAAE,CAAC,WAAW,GAAG,IAAI,CAOvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getSourceFileOfNode.d.ts","sourceRoot":"","sources":["../src/getSourceFileOfNode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAEjC;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC,UAAU,CAKhE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getTypeName.d.ts","sourceRoot":"","sources":["../src/getTypeName.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAEjC;;;;GAIG;AACH,wBAAgB,WAAW,CACzB,WAAW,EAAE,EAAE,CAAC,WAAW,EAC3B,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,MAAM,CAqDR"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,OAAO,EACL,aAAa,EACb,YAAY,EACZ,0BAA0B,GAC3B,MAAM,sCAAsC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"isSymbolFromDefaultLibrary.d.ts","sourceRoot":"","sources":["../src/isSymbolFromDefaultLibrary.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,MAAM,EAAE,EAAE,CAAC,MAAM,GAAG,SAAS,GAC5B,OAAO,CAcT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"isTypeReadonly.d.ts","sourceRoot":"","sources":["../src/isTypeReadonly.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAEjC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAiBnE,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,KAAK,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACxC,QAAQ,CAAC,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAC3C;AAED,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASf,CAAC;AAExB,eAAO,MAAM,2BAA2B,EAAE,mBAGzC,CAAC;AAgSF;;GAEG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,EAAE,CAAC,OAAO,EACnB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,OAAO,GAAE,mBAAiD,GACzD,OAAO,CAKT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"isUnsafeAssignment.d.ts","sourceRoot":"","sources":["../src/isUnsafeAssignment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAOtC;;;;;;;;;GASG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,QAAQ,EAAE,EAAE,CAAC,IAAI,EACjB,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,UAAU,EAAE,QAAQ,CAAC,IAAI,GAAG,IAAI,GAC/B,KAAK,GAAG;IAAE,QAAQ,EAAE,EAAE,CAAC,IAAI,CAAC;IAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAA;CAAE,CAQhD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"predicates.d.ts","sourceRoot":"","sources":["../src/predicates.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAMjC;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CASrD;AAED;;;GAGG;AACH,wBAAgB,kCAAkC,CAChD,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,OAAO,EAAE,EAAE,CAAC,WAAW,GACtB,OAAO,CAQT;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CAEtD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CAExD;AAYD,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,aAAa,CAM3E;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,OAAO,CAQpD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,OAAO,EAAE,EAAE,CAAC,WAAW,GACtB,OAAO,CAKT;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,OAAO,EAAE,EAAE,CAAC,WAAW,GACtB,OAAO,CAKT;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,UAAU,EAAE,EAAE,CAAC,IAAI,GAClB,OAAO,CAqBT;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,IAAI,IAAI,EAAE,CAAC,iBAAiB,CAE9B;AAED,wBAAgB,yBAAyB,CACvC,IAAI,EAAE,EAAE,CAAC,IAAI,GACZ,IAAI,IAAI,EAAE,CAAC,mBAAmB,CAEhC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"propertyTypes.d.ts","sourceRoot":"","sources":["../src/propertyTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,IAAI,EAAE,MAAM,EACZ,WAAW,CAAC,EAAE,EAAE,CAAC,QAAQ,GACxB,EAAE,CAAC,IAAI,GAAG,SAAS,CAerB;AAED,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,QAAQ,EAAE,EAAE,CAAC,MAAM,GAClB,EAAE,CAAC,IAAI,GAAG,SAAS,CAOrB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"requiresQuoting.d.ts","sourceRoot":"","sources":["../src/requiresQuoting.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,8HAA8H;AAC9H,wBAAgB,eAAe,CAC7B,IAAI,EAAE,MAAM,EACZ,MAAM,GAAE,EAAE,CAAC,YAAqC,GAC/C,OAAO,CAgBT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeFlagUtils.d.ts","sourceRoot":"","sources":["../src/typeFlagUtils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAIjC;;GAEG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC,SAAS,CAOxD;AAED;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,YAAY,EAAE,EAAE,CAAC,SAAS;AAC1B,4EAA4E;AAC5E,UAAU,CAAC,EAAE,OAAO,GACnB,OAAO,CAST"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"specifierNameMatches.d.ts","sourceRoot":"","sources":["../../src/typeOrValueSpecifiers/specifierNameMatches.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,EAAE,CAAC,IAAI,EACb,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,GACvB,OAAO,CAeT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeDeclaredInFile.d.ts","sourceRoot":"","sources":["../../src/typeOrValueSpecifiers/typeDeclaredInFile.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAKtC,wBAAgB,kBAAkB,CAChC,YAAY,EAAE,MAAM,GAAG,SAAS,EAChC,gBAAgB,EAAE,EAAE,CAAC,UAAU,EAAE,EACjC,OAAO,EAAE,EAAE,CAAC,OAAO,GAClB,OAAO,CAaT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeDeclaredInLib.d.ts","sourceRoot":"","sources":["../../src/typeOrValueSpecifiers/typeDeclaredInLib.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAEtC,wBAAgB,iBAAiB,CAC/B,gBAAgB,EAAE,EAAE,CAAC,UAAU,EAAE,EACjC,OAAO,EAAE,EAAE,CAAC,OAAO,GAClB,OAAO,CAUT"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeDeclaredInPackageDeclarationFile.d.ts","sourceRoot":"","sources":["../../src/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAiDjC,wBAAgB,oCAAoC,CAClD,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,EAAE,CAAC,IAAI,EAAE,EACvB,gBAAgB,EAAE,EAAE,CAAC,UAAU,EAAE,EACjC,OAAO,EAAE,EAAE,CAAC,OAAO,GAClB,OAAO,CAKT"}