declare module "unzipper" { interface Entry { path: string; type?: string; buffer(): Promise; } export const Open: { buffer(input: Buffer): Promise<{ files: Entry[] }>; }; }