import type { IComponentOptions } from 'angular'; import { module } from 'angular'; import type { IStageConstant } from './stages/stageConstants'; export interface ITargetSelectProps { options: IStageConstant[]; model: { target: string }; onChange(target: string): void; } export const targetSelectComponent: IComponentOptions = { bindings: { options: '=', model: '=', onChange: '