UNPKG

gulp-armapbo

Version:

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

10 lines (9 loc) 308 B
import * as File from 'vinyl'; import { StreamOptions } from './streamOptions'; import { PackingMethod } from '../domain/packingMethod'; export interface PackingFunc { (f: File): PackingMethod; } export declare class PackingFuncFactory { static getPackingFunc(options: StreamOptions): PackingFunc; }