UNPKG

@platform/cell.tmpl

Version:

Template generator for the system

6 lines (4 loc) 205 B
import { minimist } from './common'; export type Commands = Record<string, Command>; export type Command = { description: string; params: Record<string, string> }; export type Argv = minimist.ParsedArgs;