- 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
12 lines
376 B
TypeScript
12 lines
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;
|
|
}
|