We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f4d5e8 + 3721478 commit 0a77bd2Copy full SHA for 0a77bd2
1 file changed
src/services/findAllReferences.ts
@@ -7,7 +7,7 @@ namespace ts.FindAllReferences {
7
references: Entry[];
8
}
9
10
- type Definition =
+ export type Definition =
11
| { type: "symbol"; symbol: Symbol; node: Node }
12
| { type: "label"; node: Identifier }
13
| { type: "keyword"; node: ts.Node }
@@ -20,7 +20,7 @@ namespace ts.FindAllReferences {
20
node: Node;
21
isInString?: true;
22
23
- interface SpanEntry {
+ export interface SpanEntry {
24
type: "span";
25
fileName: string;
26
textSpan: TextSpan;
0 commit comments