UNPKG

220 BTypeScriptView Raw
1import { Module } from './module';
2export declare class ModulesContainer extends Map<string, Module> {
3 private readonly _applicationId;
4 get applicationId(): string;
5 getById(id: string): Module | undefined;
6}