9 lines
340 B
TypeScript
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 {};
|