aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/actions/toggleActions.ts
blob: 1f53a5806008fcf4cde3dae92b7cd32b09da4928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Action } from "../../../../framework/src/flux/action";
import { currentViewType } from "../models/toggleDataType";


export class SetSubViewAction extends Action {
    constructor(public currentView: currentViewType, public selectedTab: "chart" | "table") {
        super();
    }
}

export class ResetAllSubViewsAction extends Action {
    constructor() {
        super();
    }
}