mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseAPI } from "./_base";
 | 
						|
 | 
						|
export class UploadFile extends BaseAPI {
 | 
						|
  file(url: string, fileObject: any) {
 | 
						|
    return this.requests.post(url, fileObject);
 | 
						|
  }
 | 
						|
}
 |