This commit is contained in:
2025-12-30 18:00:20 +01:00
parent 637ca6ea54
commit 276a0db83b
8 changed files with 9 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@ type Params = {
* # Query datasquirel.com
*/
useDefault?: boolean;
query?: any;
};
export default function apiMediaDELETE(params: Params): Promise<APIResponseObject<DSQL_DATASQUIREL_USER_MEDIA | DSQL_DATASQUIREL_USER_MEDIA[]>>;
export {};
+1
View File
@@ -32,6 +32,7 @@ function apiMediaDELETE(params) {
path: finalPath,
apiKey,
useDefault: params.useDefault,
query: params.query,
});
return DELETE_MEDIA_RES;
});