UNPKG

ioredis

Version:

A robust, performance-focused and full-featured Redis client for Node.js.

12 lines (11 loc) 376 B
import { Callback } from "./types"; export default class Script { private lua; private numberOfKeys; private keyPrefix; private readOnly; private sha; private Command; constructor(lua: string, numberOfKeys?: number | null, keyPrefix?: string, readOnly?: boolean); execute(container: any, args: any[], options: any, callback?: Callback): any; }