@rhyster/wow-casc-dbc
Version:
Fetch World of Warcraft data files from CASC and parse DBC/DB2 files.
19 lines • 477 B
TypeScript
interface InstallTag {
name: string;
type: number;
files: boolean[];
}
interface InstallFile {
name: string;
hash: string;
size: number;
tags: InstallTag[];
}
interface InstallData {
tags: InstallTag[];
files: InstallFile[];
}
declare const parseInstallFile: (inputBuffer: Buffer, eKey: string, cKey: string) => InstallData;
export default parseInstallFile;
export type { InstallFile, InstallData };
//# sourceMappingURL=installFile.d.ts.map