diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:01:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:02:09 +0200 |
commit | 363723fc84f7b8477592e0105aeb331ec9a017af (patch) | |
tree | 29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/tsutils/util/usage.d.ts | |
parent | 5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff) |
node_modules
Diffstat (limited to 'node_modules/tsutils/util/usage.d.ts')
-rw-r--r-- | node_modules/tsutils/util/usage.d.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/node_modules/tsutils/util/usage.d.ts b/node_modules/tsutils/util/usage.d.ts new file mode 100644 index 000000000..937394074 --- /dev/null +++ b/node_modules/tsutils/util/usage.d.ts @@ -0,0 +1,30 @@ +import * as ts from 'typescript'; +export interface VariableInfo { + domain: DeclarationDomain; + exported: boolean; + uses: VariableUse[]; + inGlobalScope: boolean; + declarations: ts.Identifier[]; +} +export interface VariableUse { + domain: UsageDomain; + location: ts.Identifier; +} +export declare const enum DeclarationDomain { + Namespace = 1, + Type = 2, + Value = 4, + Import = 8, + Any = 7, +} +export declare const enum UsageDomain { + Namespace = 1, + Type = 2, + Value = 4, + ValueOrNamespace = 5, + Any = 7, + TypeQuery = 8, +} +export declare function getUsageDomain(node: ts.Identifier): UsageDomain | undefined; +export declare function getDeclarationDomain(node: ts.Identifier): DeclarationDomain | undefined; +export declare function collectVariableUsage(sourceFile: ts.SourceFile): Map<ts.Identifier, VariableInfo>; |