Skip to content

⬅️ Back to Table of Contents

📄 TSImportType/spec

📊 Analysis Summary

Metric Count
📦 Imports 7
📐 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
StringLiteral ../../expression/literal/StringLiteral/spec
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;
  /** @deprecated Use {@link `source`} instead. */
  argument: TypeNode;
  options: ObjectExpression | null;
  qualifier: EntityName | null;
  source: StringLiteral;
  typeArguments: TSTypeParameterInstantiation | null;
}

Properties

Name Type Optional Description
type AST_NODE_TYPES.TSImportType not shown
argument TypeNode not shown
options ObjectExpression \| null not shown
qualifier EntityName \| null not shown
source StringLiteral not shown
typeArguments TSTypeParameterInstantiation \| null not shown

Generated by Syntax Scribe