forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			438 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			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)
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |