aurelia-router-metadata
Version:
Adds decorator configuration with conventions and eager loading capabilities to aurelia-router
15 lines (14 loc) • 506 B
TypeScript
import { $Module } from "./model";
export declare class Registry {
private cache;
private moduleIds;
private $application;
constructor();
getModule(normalizedId: string): $Module | undefined;
registerModuleViaConstructor($constructor: Function): $Module;
registerModule(moduleInstance: Function | {
[key: string]: Function;
}, moduleId: string): $Module;
private registerModuleExport($module, exportName, exportValue);
private registerProperties($object);
}