[WIKI-181] chore: asset check endpoint added #7140

This commit is contained in:
Aaryan Khandelwal 2025-05-30 20:58:06 +05:30 committed by GitHub
parent 0f828fd5e0
commit 151fc8389e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 38 additions and 0 deletions

View file

@ -1,4 +1,5 @@
export type TReadOnlyFileHandler = {
checkIfAssetExists: (assetId: string) => Promise<boolean>;
getAssetSrc: (path: string) => Promise<string>;
restore: (assetSrc: string) => Promise<void>;
};