UNPKG

cmd-ts

Version:

> 💻 A type-driven command line argument parser, with awesome error reporting 🤤

6 lines (5 loc) • 196 B
import { Type } from './type'; /** * A union of literals. When you want to take an exact enum value. */ export declare function oneOf<T extends string>(literals: readonly T[]): Type<string, T>;