console-app/lib/OptionType.ts

10 lines
112 B
TypeScript
Raw Normal View History

2020-05-09 21:30:37 +02:00
export type OptionType =
'string'
| 'number'
| 'boolean'
| 'file'
| 'folder'
| 'path'
| 'array';