UNPKG

mc-java-core-333

Version:

A better library starting minecraft game NW.js and Electron.js

12 lines (11 loc) 233 B
interface ZipEntry { entryName: string; isDirectory: boolean; getData: () => Buffer; } export default class Unzipper { private entries; constructor(zipFilePath: string); getEntries(): ZipEntry[]; } export {};