forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			203 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			203 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {UIElement} from "../UIElement";
 | |
| import {UIEventSource} from "../UIEventSource";
 | |
| 
 | |
| export abstract class UIInputElement<T> extends UIElement{
 | |
|     
 | |
|     abstract GetValue() : UIEventSource<T>;
 | |
|     
 | |
| } |