export interface TemplateInfo { template: string; id: string; module: string; isEntry?: boolean; } /** * 存储 template 信息 * */ export default class TemplateInfoMap { values(): TemplateInfo[]; has(id: string): boolean; set(id: string, template: string, module: string, isEntry?: boolean): void; remove(module: string): void; private templates; }