recoder-code
Version:
Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities
12 lines (11 loc) • 376 B
TypeScript
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;
}