projects/make-a-vis/src/lib/mav-selection/shared/store/state.ts
Graphic-variable-group panel state type
Properties |
gsId |
gsId:
|
Type : string
|
streamId |
streamId:
|
Type : string
|
export interface GVGroupPanelState {
gsId: string;
streamId: string;
}
/**
* Mav selection state type
*/
export interface MavSelectionState {
gvPanelOpen: boolean;
openedGVGroups: GVGroupPanelState[];
advanced: boolean;
}
/**
* initial MavSelectionState
*/
export const initialMavSelectionState: MavSelectionState = {
gvPanelOpen: false,
openedGVGroups: [],
advanced: false
};