FindType.ts:
export enum FindType { Definition, Symbol, File }
test.ts:
import { FindType } from './FindType'; ...... switch (this.findType) { case FindType.Definition: ......
FindType.ts:
export enum FindType { Definition, Symbol, File }
test.ts:
import { FindType } from './FindType'; ...... switch (this.findType) { case FindType.Definition: ......