Rewrite all the uploaders

This commit is contained in:
Alex Gleason
2024-05-18 22:00:24 -05:00
parent 6090c4a6d9
commit 82c03dcb56
16 changed files with 260 additions and 215 deletions

View File

@@ -0,0 +1,3 @@
export interface DittoUploader {
upload(file: File, opts?: { signal?: AbortSignal }): Promise<[['url', string], ...string[][]]>;
}