File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ import type { UniqueId } from 'mo/common/types';
17
17
18
18
export type TabsType = 'line' | 'card' ;
19
19
/**
20
- * TODO: Get rid of the generic and remove the ComponentProps
20
+ * TODO: Get rid of the ComponentProps in next version
21
21
*/
22
- export interface ITabsProps < T = any > extends React . ComponentProps < any > {
22
+ export interface ITabsProps extends React . ComponentProps < any > {
23
23
className ?: string ;
24
24
style ?: React . CSSProperties ;
25
25
role ?: string ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export interface IEditorAction {
45
45
actions ?: IEditorActionsProps [ ] ;
46
46
menu ?: IMenuItemProps [ ] ;
47
47
}
48
- export interface IEditorGroup < E = any , T = any > extends ITabsProps < T > {
48
+ export interface IEditorGroup < E = any , T = any > extends ITabsProps {
49
49
id : UniqueId ;
50
50
/**
51
51
* Current editor group tab
You can’t perform that action at this time.
0 commit comments