UNPKG

gulp-armapbo

Version:

The plugin for Gulp which allows to pack ArmA pbo files from sources.

18 lines (17 loc) 609 B
/// <reference types="node" /> import { PackingMethod } from './packingMethod'; export declare class HeaderEntry { static getSignatureEntry(): HeaderEntry; static getBoundaryEntry(): HeaderEntry; private _packingMethod; constructor(name: string, packingMethod: PackingMethod, originalSize: number, timestamp: number); readonly name: string; readonly packingMethod: PackingMethod; readonly originalSize: number; readonly timestamp: number; readonly reserved: number; contents: Buffer; dataSize: number; getSize(): number; __fallbackToUncompressed(): void; }