ngrx-forms
Version:
Proper integration of forms in Angular 4 applications using ngrx
5 lines (4 loc) • 321 B
TypeScript
import { Actions } from '../../actions';
import { FormArrayState } from '../../state';
export declare function move(array: readonly any[], fromIndex: number, toIndex: number): any[];
export declare function moveControlReducer<TValue>(state: FormArrayState<TValue>, action: Actions<TValue[]>): FormArrayState<TValue>;