@@ -13,7 +13,9 @@ const MdxLayout: FC<MdxLayoutProps> = ({ children }) => {
1313 return (
1414 < MDXProvider
1515 components = { {
16+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1617 ScssDocs : ( props : any ) => < ScssDocs { ...props } /> ,
18+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1719 strong : ( props : any ) => {
1820 if ( props . children . type == 'em' ) {
1921 const color = props . children . props . children . includes ( 'Deprecated' )
@@ -29,7 +31,9 @@ const MdxLayout: FC<MdxLayoutProps> = ({ children }) => {
2931 return < strong > { props . children } </ strong >
3032 }
3133 } ,
34+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
3235 pre : ( props : any ) => < CodeBlock { ...props } /> ,
36+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
3337 table : ( props : any ) => {
3438 // TODO: find better soultion
3539 const isApiTable =
@@ -43,6 +47,7 @@ const MdxLayout: FC<MdxLayoutProps> = ({ children }) => {
4347 />
4448 )
4549 } ,
50+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
4651 Callout : ( props : any ) => {
4752 const { children, title, ...rest } = props
4853 return (
@@ -52,6 +57,7 @@ const MdxLayout: FC<MdxLayoutProps> = ({ children }) => {
5257 </ Callout >
5358 )
5459 } ,
60+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
5561 Example : ( props : any ) => {
5662 const { children, ...rest } = props
5763 return (
0 commit comments