gulp-armapbo
Version:
The plugin for Gulp which allows to pack ArmA pbo files from sources.
14 lines (13 loc) • 446 B
TypeScript
/// <reference types="node" />
import { Transform } from 'stream';
import { StreamOptions } from './streamOptions';
import * as File from 'vinyl';
export declare class PboTransformStream extends Transform {
private _contentParts;
private _options;
private _builder;
constructor(options?: StreamOptions);
_transform(file: File, enc: string, cb: Function): void;
_flush(cb: Function): void;
_getDefaultName(): string;
}