/** * Renderables is a simple registry to register renderables. */ export default class Renderables { /** * The map where the renderables are stored */ private static renderableMap; /** * Registers the property in the registry * * @param name the renderables name * @param renderable the renderables class */ static register(name: string, renderable: any): void; /** * Returns the renderable from the registry * * @param name the renderables name */ static resolve(name: string): any; }