UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

19 lines (18 loc) 382 B
export interface IManifest { enabled?: boolean; filePath?: string; details?: boolean; } export interface IManifestBundle { type: string; name: string; size: number; localPath: string; absPath: string; relBrowserPath: string; webIndexed: boolean; priority: number; } export interface IManifestJSON { bundles: Array<IManifestBundle>; }