ngx-bootstrap
Version:
Native Angular Bootstrap Components
9 lines (8 loc) • 334 B
TypeScript
import { InjectionToken } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms/src/directives/control_value_accessor';
import { Type } from '@angular/core/src/type';
export interface ControlValueAccessorModel {
provide: InjectionToken<ControlValueAccessor>;
useExisting: Type<any>;
multi: boolean;
}