UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

7 lines (6 loc) 213 B
import type { TargetEntrypointInput } from '../entrypoint.js'; export type Input = TargetEntrypointInput; export type Output = void; export interface CLIManager { handleCommand(input: Input): Promise<void>; }