ngrx-forms
Version:
Proper integration of forms in Angular 4 applications using ngrx
7 lines (6 loc) • 340 B
TypeScript
import { FormControlState, FormControlValueTypes } from '../state';
/**
* This update function takes a form control state and marks it as not focused (which
* will also `.blur()` the form element).
*/
export declare function unfocus<TValue extends FormControlValueTypes>(state: FormControlState<TValue>): FormControlState<TValue>;