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 1
1
// tslint:disable no-console
2
2
3
3
import { Config , createForm , AnyObject } from 'final-form'
4
- import * as arrayMutators from './index'
4
+ import arrayMutators from './index'
5
5
import { Mutators } from './index'
6
6
7
7
const onSubmit : Config [ 'onSubmit' ] = ( values , callback ) => { }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const shift: Mutator
9
9
export const swap : Mutator
10
10
export const unshift : Mutator
11
11
12
- interface DefaultType {
12
+ export interface DefaultType {
13
13
insert : Mutator
14
14
move : Mutator
15
15
pop : Mutator
@@ -20,7 +20,8 @@ interface DefaultType {
20
20
unshift : Mutator
21
21
}
22
22
23
- export default DefaultType
23
+ declare const d : DefaultType
24
+ export default d
24
25
25
26
/** The shape of the mutators once final-form has bound them to state */
26
27
export interface Mutators {
You can’t perform that action at this time.
0 commit comments