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