aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tsutils/util/usage.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tsutils/util/usage.d.ts')
-rw-r--r--node_modules/tsutils/util/usage.d.ts30
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>;