UNPKG

jsii-rosetta

Version:

[![Join the chat at https://cdk.Dev](https://img.shields.io/static/v1?label=Slack&message=cdk.dev&color=brightgreen&logo=slack)](https://cdk.dev) [![All Contributors](https://img.shields.io/github/all-contributors/aws/jsii/main?label=%E2%9C%A8%20All%20Con

13 lines 667 B
import * as ts from 'typescript'; export type SubmoduleReferenceMap = ReadonlyMap<ts.PropertyAccessExpression | ts.LeftHandSideExpression | ts.Identifier | ts.PrivateIdentifier, SubmoduleReference>; export declare class SubmoduleReference { readonly root: ts.Symbol; readonly submoduleChain: ts.LeftHandSideExpression | ts.Identifier | ts.PrivateIdentifier; readonly path: readonly ts.Node[]; static inSourceFile(sourceFile: ts.SourceFile, typeChecker: ts.TypeChecker): SubmoduleReferenceMap; private static inNode; private constructor(); get lastNode(): ts.Node; toString(): string; } //# sourceMappingURL=submodule-reference.d.ts.map