Skip to content

Commit e07c3d3

Browse files
authoredFeb 20, 2023
Update index.d.ts
Needed to avoid typescript errors
1 parent bdf8d50 commit e07c3d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export interface Props {
2525
pane2Style?: React.CSSProperties;
2626
resizerClassName?: string;
2727
step?: number;
28+
children: React.ReactElement[];
2829
}
2930

3031
export interface State {
@@ -59,6 +60,7 @@ export interface PaneProps {
5960
innerRef?: any;
6061
index?: number;
6162
className?: string;
63+
children: React.ReactElement[];
6264
}
6365

6466
declare class Pane extends React.PureComponent<PaneProps> {

0 commit comments

Comments
 (0)
Please sign in to comment.