mapcomplete/State.ts
2021-11-07 16:34:51 +01:00

18 lines
438 B
TypeScript

import LayoutConfig from "./Models/ThemeConfig/LayoutConfig";
import FeaturePipelineState from "./Logic/State/FeaturePipelineState";
/**
* Contains the global state: a bunch of UI-event sources
*/
export default class State extends FeaturePipelineState {
/* The singleton of the global state
*/
public static state: FeaturePipelineState;
constructor(layoutToUse: LayoutConfig) {
super(layoutToUse)
}
}