mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-30 17:37:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			149 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			149 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as upload from '../services/Upload';
 | |
| 
 | |
| type S = {
 | |
|   upload: typeof upload;
 | |
| };
 | |
| 
 | |
| export function getService<T extends keyof S>(name: T): S[T];
 | 
