UNPKG

arx-level-generator

Version:
10 lines (9 loc) 300 B
import { ScriptHandler } from '../Script.js'; export declare class ScriptSubroutine { name: string; command: ScriptHandler; invokeType: 'goto' | 'gosub'; constructor(name: string, command: ScriptHandler, invokeType?: 'goto' | 'gosub'); toString(): string; invoke(): string; }