| 1 | import type { BaseNode } from 'estree'; |
| 2 | |
| 3 | export interface AttachedScope { |
| 4 | parent?: AttachedScope; |
| 5 | isBlockScope: boolean; |
| 6 | declarations: { [key: string]: boolean }; |
| 7 | addDeclaration(node: BaseNode, isBlockDeclaration: boolean, isVar: boolean): void; |
| 8 | contains(name: string): boolean; |
| 9 | } |
| 10 | |
| 11 | export interface DataToEsmOptions { |
| 12 | compact?: boolean; |
no outgoing calls
no test coverage detected