7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
import { APIResponseObject } from "../../../../../types";
|
|
type Params = {
|
|
targetUserId?: string | number;
|
|
};
|
|
export default function suAddBackup({ targetUserId, }: Params): Promise<APIResponseObject>;
|
|
export {};
|