UNPKG

@valkey/client

Version:

The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.

8 lines (7 loc) 281 B
declare const symbol: unique symbol; export type CommandOptions<T> = T & { readonly [symbol]: true; }; export declare function commandOptions<T>(options: T): CommandOptions<T>; export declare function isCommandOptions<T>(options: any): options is CommandOptions<T>; export {};