piral-cli
Version:
The standard CLI for creating and building a Piral instance or a Pilet.
10 lines (9 loc) • 312 B
TypeScript
import * as apps from './apps';
import { ToolCommand, ListCommands } from './types';
export { apps };
declare class Commands implements ListCommands {
all: ToolCommand<any, any>[];
get pilet(): ToolCommand<any, any>[];
get piral(): ToolCommand<any, any>[];
}
export declare const commands: Commands;