feat: add type of toc

This commit is contained in:
p-sw 2024-06-02 06:57:07 +09:00
parent a042157626
commit c70a211954

7
packages/react/src/mdx.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
declare module '*.mdx' {
import type { MDXProps } from 'mdx/types'
import type { Toc } from '@stefanprobst/rehype-extract-toc'
export const tableOfContents: Toc
export default function MDXContent(props: MDXProps): JSX.Element
}