diff --git a/lib/InteractiveOptions.ts b/lib/InteractiveOptions.ts index e1d7f53..04a6e18 100644 --- a/lib/InteractiveOptions.ts +++ b/lib/InteractiveOptions.ts @@ -11,12 +11,22 @@ interface Option { type: OptionType; required?: boolean; default: unknown; + alias: string; + env: string; +} + +interface OptionProcess extends Option { + filled: boolean; } export class InteractiveOptions extends Persistent { + protected options: Array; + public constructor (options: Array