import { Persistent } from '@scode/modelling'; enum OptionType { string = 'string', number = 'number', boolean = 'boolean' } interface Option { name: string; type: OptionType; required?: boolean; default: unknown; } export class InteractiveOptions extends Persistent { public constructor (options: Array