Skip to content

Commit 581db23

Browse files
committed
fix(antd): fix typings
1 parent c421c69 commit 581db23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/next/src/form-collapse/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type ActiveKeys = string | number | Array<string | number>
2020

2121
type ActiveKey = string | number
2222

23-
interface IFormCollapse {
23+
export interface IFormCollapse {
2424
activeKeys: ActiveKeys
2525
hasActiveKey(key: ActiveKey): boolean
2626
setActiveKeys(key: ActiveKeys): void
@@ -29,7 +29,7 @@ interface IFormCollapse {
2929
toggleActiveKey(key: ActiveKey): void
3030
}
3131

32-
interface IFormCollapseProps extends CollapseProps {
32+
export interface IFormCollapseProps extends CollapseProps {
3333
formCollapse?: IFormCollapse
3434
}
3535

0 commit comments

Comments
 (0)