Skip to content

Commit 38913d4

Browse files
committed
Remove newline from JSDoc in test
1 parent 2a44177 commit 38913d4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

test/mui-overridable-component/input.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,13 @@ interface OverridableComponent<TypeMap extends OverridableTypeMap> {
2222
props: {
2323
/**
2424
* The component used for the root node.
25-
* Either a string to use a HTML element or a component.
2625
*/
2726
component: RootComponent;
2827
} & OverrideProps<TypeMap, RootComponent>,
2928
): React.JSX.Element | null;
3029
(props: DefaultComponentProps<TypeMap>): React.JSX.Element | null;
3130
}
3231

33-
/**
34-
* Props of the component if `component={Component}` is used.
35-
*/
3632
type OverrideProps<
3733
TypeMap extends OverridableTypeMap,
3834
RootComponent extends React.ElementType,

test/mui-overridable-component/output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
]
2424
},
2525
"documentation": {
26-
"description": "The component used for the root node.\r\nEither a string to use a HTML element or a component."
26+
"description": "The component used for the root node."
2727
},
2828
"optional": true
2929
},

0 commit comments

Comments
 (0)