Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
24
Frontend-Learner/node_modules/rollup-plugin-visualizer/dist/plugin/module-mapper.d.ts
generated
vendored
Normal file
24
Frontend-Learner/node_modules/rollup-plugin-visualizer/dist/plugin/module-mapper.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { ModuleMeta, ModuleLengths, ModuleUID, VisualizerData } from "../shared/types";
|
||||
export declare const getDataHash: (json: string) => string;
|
||||
export declare const replaceHashPlaceholders: (data: VisualizerData) => string;
|
||||
export declare class ModuleMapper {
|
||||
private projectRoot;
|
||||
private nodeParts;
|
||||
private nodeMetas;
|
||||
private counter;
|
||||
constructor(projectRoot: string | RegExp);
|
||||
trimProjectRootId(moduleId: string): string;
|
||||
uniqueId(): ModuleUID;
|
||||
getModuleUid(moduleId: string): ModuleUID;
|
||||
getBundleModuleUid(bundleId: string, moduleId: string): ModuleUID;
|
||||
setNodePart(bundleId: string, moduleId: string, value: ModuleLengths): ModuleUID;
|
||||
setNodeMeta(moduleId: string, value: {
|
||||
isEntry?: boolean;
|
||||
isExternal?: boolean;
|
||||
}): void;
|
||||
hasNodePart(bundleId: string, moduleId: string): boolean;
|
||||
getNodeParts(): ModuleMapper["nodeParts"];
|
||||
getNodeMetas(): Record<ModuleUID, ModuleMeta>;
|
||||
addImportedByLink(targetId: string, sourceId: string): void;
|
||||
addImportedLink(sourceId: string, targetId: string, dynamic?: boolean): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue