mirror of
https://github.com/Mintplex-Labs/epub2-static.git
synced 2026-07-01 16:04:13 -04:00
13 lines
323 B
TypeScript
13 lines
323 B
TypeScript
/**
|
|
* Created by user on 2018/2/1/001.
|
|
*/
|
|
/// <reference types="node" />
|
|
export declare let ZipFile: IZipFile;
|
|
export interface IZipFile {
|
|
names: string[];
|
|
count: number;
|
|
constructor(filename: string): any;
|
|
readFile(name: string, cb: (error: any, buffer: Buffer) => void): void;
|
|
}
|
|
export default ZipFile;
|