/** * @file 管理器 * @author Yourtion Guo */ export declare class Manager { protected map: Map; /** 获取 */ get(name: string): T | undefined; /** 遍历 */ forEach(iter: (value: T, key: string, map: Map) => void): void; }