@module-federation/typescript
Version:
Webpack plugin to stream typescript for module federation apps/components
11 lines (10 loc) • 355 B
TypeScript
import { TypesStatsJson } from '../types';
export declare class TypesCache {
private static fsCache;
private static typesCache;
static getFsFiles(directory: string): string[] | undefined;
static getCacheBustedFiles(remote: string, statsJson: TypesStatsJson): {
filesToCacheBust: string[];
filesToDelete: string[];
};
}