You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
427 B
12 lines
427 B
/// <reference path="../../includes.d.ts" />
|
|
/// <reference path="systemHelpers.d.ts" />
|
|
/// <reference path="../../configs/ts/configPlugin.d.ts" />
|
|
declare module System {
|
|
var _module: ng.IModule;
|
|
var controller: (name: string, inlineAnnotatedConstructor: any[]) => ng.IModule;
|
|
var route: (templateName: string, reloadOnSearch?: boolean) => {
|
|
templateUrl: string;
|
|
reloadOnSearch: boolean;
|
|
};
|
|
}
|