Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
688 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { ModuleCache } from './ModuleCache';
|
---|
| 2 | import { LicenseIdentifiedModule } from './LicenseIdentifiedModule';
|
---|
| 3 | declare class PluginModuleCache implements ModuleCache {
|
---|
| 4 | private totalCache;
|
---|
| 5 | private chunkCache;
|
---|
| 6 | private chunkSeenCache;
|
---|
| 7 | registerModule(chunkName: string, module: LicenseIdentifiedModule): void;
|
---|
| 8 | getModule(packageName: string): LicenseIdentifiedModule | null;
|
---|
| 9 | markSeenForChunk(chunkName: string, packageName: string): void;
|
---|
| 10 | alreadySeenForChunk(chunkName: string, packageName: string): boolean;
|
---|
| 11 | getAllModulesForChunk(chunkName: string): LicenseIdentifiedModule[];
|
---|
| 12 | getAllModules(): LicenseIdentifiedModule[];
|
---|
| 13 | }
|
---|
| 14 | export { PluginModuleCache };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.