| 8 | import type { ExportResult } from './index'; |
| 9 | |
| 10 | export interface ZipAsset { |
| 11 | /** Path inside the archive, e.g. `assets/logo.svg`. */ |
| 12 | path: string; |
| 13 | /** Raw bytes or UTF-8 string. */ |
| 14 | content: Buffer | string; |
| 15 | } |
| 16 | |
| 17 | export interface ExportZipOptions extends LocalAssetOptions { |
| 18 | /** Extra files to bundle alongside `index.html` and the README. */ |
nothing calls this directly
no outgoing calls
no test coverage detected