index.d.ts 255 B

1234567
  1. import { InjectionToken, Type } from '@angular/core';
  2. import { ControlValueAccessor } from '@angular/forms';
  3. export interface ControlValueAccessorModel {
  4. provide: InjectionToken<ControlValueAccessor>;
  5. useExisting: Type<any>;
  6. multi: boolean;
  7. }