UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

7 lines (6 loc) 248 B
import type { AppUCsLoaderInput } from '../../../app/index.js'; export type Input = Pick<AppUCsLoaderInput, 'appsRootPath' | 'srcImporter'>; export type Output = void; export interface CLIManager { handleCommand(input: Input): Promise<void>; }