import type { ReadableStream as NodeWebRS } from 'node:stream/web'; export interface ZipFileContentInput { /** * Primitives from file reading libraries */ buffer: Uint8Array | ArrayBufferLike | Blob; /** * From file reading stream api */ stream: ReadableStream | NodeWebRS; } export type ZipFileContent = ZipFileContentInput[keyof ZipFileContentInput]; //# sourceMappingURL=ZipFileContent.d.ts.map