Files
backend_task/node_modules/@redis/client/dist/lib/commands/BGSAVE.d.ts
T
2025-02-11 15:06:41 +01:00

8 lines
281 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '.';
interface BgSaveOptions {
SCHEDULE?: true;
}
export declare function transformArguments(options?: BgSaveOptions): RedisCommandArguments;
export declare function transformReply(): RedisCommandArgument;
export {};