mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			298 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			298 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// These declarations tell the TypeScript compiler about the existence
 | 
						|
// of the global variables for our untyped JavaScript modules.  Please
 | 
						|
// remove each declaration when the corresponding module is migrated
 | 
						|
// to TS.
 | 
						|
 | 
						|
declare let zulip_test: any;
 | 
						|
 | 
						|
interface JQuery {
 | 
						|
    expectOne(): JQuery;
 | 
						|
}
 |