diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-29 12:00:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 12:00:15 +0300 |
commit | 33de856c32711b2b5a83d5b27583eec0cc6e1248 (patch) | |
tree | 87ecae3c9c040dea8de4d6069430a18aa92c4dfc /src/lib/media | |
parent | 613884a3d388b814244fc620c7a06c4742851585 (diff) | |
download | voidsky-33de856c32711b2b5a83d5b27583eec0cc6e1248.tar.zst |
match web version exports (#4257)
Diffstat (limited to 'src/lib/media')
-rw-r--r-- | src/lib/media/manip.web.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/media/manip.web.ts b/src/lib/media/manip.web.ts index 25315ebbd..4761f2fe0 100644 --- a/src/lib/media/manip.web.ts +++ b/src/lib/media/manip.web.ts @@ -159,3 +159,7 @@ async function downloadUrl(href: string, filename: string) { a.download = filename a.click() } + +export async function safeDeleteAsync() { + // no-op +} |