Merge pull request #1411 from michelsalib/patch-3

Add some missing fields to ng.ui.state
This commit is contained in:
Masahiro Wakame
2013-12-09 06:19:54 -08:00

View File

@@ -8,6 +8,7 @@
declare module ng.ui {
interface IState {
name?: string;
template?: any;
templateUrl?: any;
templateProvider?: () => string;
@@ -75,6 +76,7 @@ declare module ng.ui {
get(state: string): IState;
get(): IState[];
current: IState;
params: IStateParamsService;
}
interface IStateParamsService {