| 2 | import type { Node } from "@babel/types"; |
| 3 | |
| 4 | export interface HubInterface { |
| 5 | getCode(): string | void; |
| 6 | getScope(): Scope | void; |
| 7 | addHelper(name: string): any; |
| 8 | buildError(node: Node, msg: string, Error: new (msg: string) => Error): Error; |
| 9 | } |
| 10 | |
| 11 | export default class Hub implements HubInterface { |
| 12 | getCode() {} |
no outgoing calls
no test coverage detected
searching dependent graphs…