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