From 363723fc84f7b8477592e0105aeb331ec9a017af Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Aug 2017 05:01:11 +0200 Subject: node_modules --- node_modules/tsutils/util/usage.d.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 node_modules/tsutils/util/usage.d.ts (limited to 'node_modules/tsutils/util/usage.d.ts') 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; -- cgit v1.2.3