@smart-matrix/lcu-cli
Version:
This is the home of the LCU DevKit and the LCU CLI code.
13 lines (12 loc) • 462 B
TypeScript
import { Logger } from '../logging/logger';
import { Command } from 'commander';
export declare class LowCodeUnityCLIService {
protected version: string;
protected logger: Logger;
protected program: Command;
constructor(version: string, logger: Logger);
SetupCLI(): Promise<void>;
StartCLI(args: string[]): Promise<void>;
protected initCliCommand(): Promise<void>;
protected setupInitializeCommand(): Promise<void>;
}