mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			354 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			354 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | class Foo { | ||
|  |   bar(options: {x: number, y: number, maybe?: number, nullable: string|null, object?: {one: number, two?: number}}) { | ||
|  | 
 | ||
|  |   } | ||
|  | 
 | ||
|  |   async goBack() : Promise<Response | null> { | ||
|  |     return null; | ||
|  |   } | ||
|  | 
 | ||
|  |   response(): Response | null { | ||
|  |     return null; | ||
|  |   } | ||
|  | 
 | ||
|  |   baz(): {abc: number, def?: number, ghi: string} | null { | ||
|  |     return null; | ||
|  |   } | ||
|  | } | ||
|  | 
 | ||
|  | export {Foo}; |