10 lines
350 B
TypeScript
10 lines
350 B
TypeScript
import { DSQL_DATASQUIREL_BACKUPS } from "../../../../types/dsql";
|
|
import { APIResponseObject } from "../../../../types";
|
|
import { NextApiResponse } from "next";
|
|
type Params = {
|
|
backup: DSQL_DATASQUIREL_BACKUPS;
|
|
res: NextApiResponse;
|
|
};
|
|
export default function downloadBackup({ backup, res, }: Params): Promise<APIResponseObject>;
|
|
export {};
|