@k8ts/instruments
Version:
A collection of utilities and core components for k8ts.
5 lines • 296 B
TypeScript
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>;
//# sourceMappingURL=types.d.ts.map