interface TSImportEqualsDeclaration {
    end?: null | number;
    extra?: Record<string, unknown>;
    id: Identifier;
    importKind?: null | "value" | "type";
    innerComments?: null | Comment[];
    isExport: boolean;
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    moduleReference: TSExternalModuleReference | TSEntityName;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TSImportEqualsDeclaration";
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
importKind?: null | "value" | "type"
innerComments?: null | Comment[]
isExport: boolean
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "TSImportEqualsDeclaration"