Skip to content

Instantly share code, notes, and snippets.

@jjstrat3
jjstrat3 / appStatesRegistrar.ts
Created September 25, 2015 17:19
Typescript ui-router state registration singleton
module appStatesRegistrar {
"use strict";
interface IStateOptions {
name: string;
stateOptions: ng.ui.IState;
}
export class StateConfig {