mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 21:59:40 +02:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
import { BaseAPI } from "./_base";
|
|
|
|
export class UploadFile extends BaseAPI {
|
|
file(url: string, fileObject: any) {
|
|
return this.requests.post(url, fileObject);
|
|
}
|
|
}
|