export interface TarEntry { name: string; data: Uint8Array; } /** * Builds a deterministic tar archive. * * Entries are written in the order given — callers are responsible for sorting * them. Only regular files are written; directories are implied by the entry * paths, which keeps the output free of any ordering ambiguity between a * directory and the files inside it. * * Paths too long for the 100 byte ustar name field are encoded by `modern-tar` * (ustar prefix where it fits, PAX otherwise), so no path we can build is * rejected here. */ export default function createTar(entries: Array): Promise>; //# sourceMappingURL=createTar.d.ts.map