| 4 | export type ExportFrom = NamespaceExport | BindingsExport | ExportAllFrom |
| 5 | |
| 6 | export class NamespaceExport implements BasicBuilder { |
| 7 | constructor( |
| 8 | private from: string, |
| 9 | private namespace: string, |
| 10 | ) {} |
| 11 | |
| 12 | write(writer: Writer<undefined>): void { |
| 13 | writer.write(`export * as ${this.namespace} from '${this.from}'`) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | export class BindingsExport implements BasicBuilder { |
| 18 | private namedExports: NamedExport[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected