9 lines
322 B
TypeScript
9 lines
322 B
TypeScript
import { APIResponseObject, UserType } from "../../../../../types";
|
|
import { DSQL_DATASQUIREL_BACKUPS } from "../../../../../types/dsql";
|
|
type Params = {
|
|
user: UserType;
|
|
backup: DSQL_DATASQUIREL_BACKUPS;
|
|
};
|
|
export default function suRestoreBackup({ user, backup, }: Params): Promise<APIResponseObject>;
|
|
export {};
|