• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import 'typescript';
2
3declare module 'typescript' {
4  interface SourceFile {
5    // this is marked as internal to typescript
6    externalModuleIndicator?: Node;
7  }
8}
9