UNPKG

@darkobits/saffron

Version:

Yargs + Cosmiconfig for robust, configurable CLIs.

9 lines (8 loc) 239 B
import type { SaffronCommonContext } from './SaffronCommonContext'; import type { Argv } from 'yargs'; /** * Context passed to builders. */ export interface SaffronBuilderContext<A> extends SaffronCommonContext { command: Argv<A>; }