8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import { RedisCommandArguments } from '.';
|
|
interface FunctionLoadOptions {
|
|
REPLACE?: boolean;
|
|
}
|
|
export declare function transformArguments(code: string, options?: FunctionLoadOptions): RedisCommandArguments;
|
|
export declare function transformReply(): string;
|
|
export {};
|