Skip to content

Commit 6656232

Browse files
authored
Update FormContext.tsx (#103)
1 parent c4997e4 commit 6656232

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FormContext.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import * as React from 'react';
22
import { ValidateMessages, FormInstance, FieldData, Store } from './interface';
33

4-
interface Forms {
4+
export interface Forms {
55
[name: string]: FormInstance;
66
}
77

8-
interface FormChangeInfo {
8+
export interface FormChangeInfo {
99
changedFields: FieldData[];
1010
forms: Forms;
1111
}
1212

13-
interface FormFinishInfo {
13+
export interface FormFinishInfo {
1414
values: Store;
1515
forms: Forms;
1616
}

0 commit comments

Comments
 (0)