console-app/lib/OptionType.ts
2020-05-09 21:30:37 +02:00

10 lines
112 B
TypeScript

export type OptionType =
'string'
| 'number'
| 'boolean'
| 'file'
| 'folder'
| 'path'
| 'array';