Interface IStateFunc

interface IStateFunc {
    constructor(type?: StateType, data?: string): IState;
    fetchById(id: string): IState;
    findById(id: string): IState;
}

Methods