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