@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
14 lines (13 loc) • 453 B
TypeScript
import TerminalInterface from './interfaces/TerminalInterface';
import { CommandService } from './services/CommandService';
export default class InFlightEntertainment {
private static activeGameCount;
private static game?;
static setup(options: {
command: CommandService;
ui: TerminalInterface;
}): void;
static start(intro?: string[]): void;
static writeStatus(message: string): void;
static stop(): void;
}