resource_loader.d.ts 514 Bytes
Newer Older
Kriengkrai Yothee's avatar
Kriengkrai Yothee committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export declare class WebpackResourceLoader {
    private _parentCompilation;
    private _context;
    private _fileDependencies;
    private _reverseDependencies;
    private _cachedSources;
    private _cachedEvaluatedSources;
    constructor();
    update(parentCompilation: any): void;
    getResourceDependencies(filePath: string): never[] | Set<string>;
    getAffectedResources(file: string): never[] | Set<string>;
    private _compile;
    private _evaluate;
    get(filePath: string): Promise<string>;
}