blob: db298ed7c94a195201d86376b1a7ce007c64bc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/// <reference types="node" />
import { Readable } from 'stream';
import { File } from 'resolve-dependencies';
export declare type MultiStreams = (Readable | (() => Readable))[];
export declare function toStream(content: Buffer | string): Readable;
export declare class Bundle {
size: number;
cwd: string;
rendered: boolean;
private offset;
private index;
private files;
streams: MultiStreams;
constructor({ cwd }?: {
cwd: string;
});
get list(): string[];
addResource(absoluteFileName: string, content?: File | Buffer | string): Promise<number>;
/**
* De-dupe files by absolute path, partition by symlink/real
* Iterate over real, add entries
* Iterate over symlinks, add symlinks
*/
renderIndex(): {
[key: string]: [number, number];
};
/**
* Add a stream if needed and an entry with the required offset and size
* Ensure the calling order of this method is idempotent (eg, while iterating a sorted set)
* @param entryPath
* @param file
* @param useEntry
*/
addEntry(entryPath: string, file: File, useEntry?: string): void;
toStream(): any;
}
|