- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
14 lines
447 B
TypeScript
14 lines
447 B
TypeScript
import { ChainableCommander } from "./utils/RedisCommander";
|
|
export interface Transaction {
|
|
pipeline(commands?: unknown[][]): ChainableCommander;
|
|
multi(options: {
|
|
pipeline: false;
|
|
}): Promise<"OK">;
|
|
multi(): ChainableCommander;
|
|
multi(options: {
|
|
pipeline: true;
|
|
}): ChainableCommander;
|
|
multi(commands?: unknown[][]): ChainableCommander;
|
|
}
|
|
export declare function addTransactionSupport(redis: any): void;
|