Files
Star-wars-card-game/node_modules/@redis/client/dist/lib/command-options.d.ts
2026-01-28 00:55:06 +03:00

8 lines
281 B
TypeScript

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 {};