UNPKG

@k8ts/instruments

Version:

A collection of utilities and core components for k8ts.

5 lines (4 loc) 257 B
export type CliKey = `-${string}` | `--${string}` export type InputCliKey = `${CliKey}=` | `${CliKey} ` | CliKey export type CliValue = string | number | boolean | null | `${string}` | ` ${string}` export type CliArgsMapping = Record<InputCliKey, CliValue>