import { InjectionToken, Type } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export interface ControlValueAccessorModel { provide: InjectionToken; // tslint:disable-next-line:no-any useExisting: Type; multi: boolean; }