⬅️ Back to Table of Contents
📄 spec.ts
📊 Analysis Summary
Metric |
Count |
📦 Imports |
6 |
📐 Interfaces |
1 |
📚 Table of Contents
🛠️ File Location:
📂 packages/ast-spec/src/type/TSImportType/spec.ts
📦 Imports
Name |
Source |
AST_NODE_TYPES |
../../ast-node-types |
BaseNode |
../../base/BaseNode |
ObjectExpression |
../../expression/ObjectExpression/spec |
TSTypeParameterInstantiation |
../../special/TSTypeParameterInstantiation/spec |
EntityName |
../../unions/EntityName |
TypeNode |
../../unions/TypeNode |
Interfaces
TSImportType
Interface Code
export interface TSImportType extends BaseNode {
type: AST_NODE_TYPES.TSImportType;
argument: TypeNode;
options: ObjectExpression | null;
qualifier: EntityName | null;
typeArguments: TSTypeParameterInstantiation | null;
}
Properties
Name |
Type |
Optional |
Description |
type |
AST_NODE_TYPES.TSImportType |
✗ |
|
argument |
TypeNode |
✗ |
|
options |
ObjectExpression | null |
✗ |
|
qualifier |
EntityName | null |
✗ |
|
typeArguments |
TSTypeParameterInstantiation | null |
✗ |
|