1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-21 14:19:41 +02:00
mealie/frontend/api/class-interfaces/upload.ts

8 lines
172 B
TypeScript
Raw Normal View History

import { BaseAPI } from "../_base";
export class UploadFile extends BaseAPI {
file(url: string, fileObject: any) {
return this.requests.post(url, fileObject);
}
}