File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11// tslint:disable no-console
22
33import { Config , createForm , AnyObject } from 'final-form'
4- import * as arrayMutators from './index'
4+ import arrayMutators from './index'
55import { Mutators } from './index'
66
77const onSubmit : Config [ 'onSubmit' ] = ( values , callback ) => { }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const shift: Mutator
99export const swap : Mutator
1010export const unshift : Mutator
1111
12- interface DefaultType {
12+ export interface DefaultType {
1313 insert : Mutator
1414 move : Mutator
1515 pop : Mutator
@@ -20,7 +20,8 @@ interface DefaultType {
2020 unshift : Mutator
2121}
2222
23- export default DefaultType
23+ declare const d : DefaultType
24+ export default d
2425
2526/** The shape of the mutators once final-form has bound them to state */
2627export interface Mutators {
You can’t perform that action at this time.
0 commit comments