mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { BaseAPI } from "../_base";
|
|
|
|
export class UploadFile extends BaseAPI {
|
|
file(url: string, fileObject: any) {
|
|
return this.requests.post(url, fileObject);
|
|
}
|
|
}
|