import { InjectionToken, Type } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export interface ControlValueAccessorModel { provide: InjectionToken; useExisting: Type; multi: boolean; }