8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
import { DSQL_DATASQUIREL_BACKUPS } from "../../../../types/dsql";
|
|
import { APIResponseObject } from "../../../../types";
|
|
type Params = {
|
|
backup: DSQL_DATASQUIREL_BACKUPS;
|
|
};
|
|
export default function deleteBackup({ backup, }: Params): Promise<APIResponseObject>;
|
|
export {};
|