piral-cli
Version:
The standard CLI for creating and building a Piral instance or a Pilet.
9 lines (8 loc) • 365 B
TypeScript
import { PlatformStartShellOptions, PlatformStartModuleOptions } from '../types';
declare function startModule(options: PlatformStartModuleOptions): Promise<void>;
declare function startShell(options: PlatformStartShellOptions): Promise<void>;
export declare function setup(): {
startModule: typeof startModule;
startShell: typeof startShell;
};
export {};