datasquirel/dist/package-shared/api/media/delete.d.ts
Benjamin Toby 3730e4722e Updates
2025-07-05 15:16:31 +01:00

9 lines
340 B
TypeScript

import { APIResponseObject } from "../../types";
import { DSQL_DATASQUIREL_USER_MEDIA } from "../../types/dsql";
type Params = {
mediaID?: string | number;
apiKey?: string;
};
export default function apiMediaDELETE(params: Params): Promise<APIResponseObject<DSQL_DATASQUIREL_USER_MEDIA | DSQL_DATASQUIREL_USER_MEDIA[]>>;
export {};