UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

14 lines (13 loc) 447 B
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;