python-archieve-projects/WechatBot/node_modules/cmd-ts/dist/cjs/oneOf.d.ts

6 lines
187 B
TypeScript

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: T[]): Type<string, T>;