UNPKG

@ngqp/core

Version:

Synchronizing form controls with the URL for Angular

12 lines (11 loc) 359 B
import { ControlValueAccessor } from '@angular/forms'; /** * Unified abstraction for {@link QueryParamNameDirective} and {@link QueryParamDirective}. * Allows to process query params bound to the group as well as standalone query params. * * @internal */ export interface QueryParamAccessor { name: string; valueAccessor: ControlValueAccessor; }