pswui-docs/src/mdx.d.ts
2024-06-13 17:57:54 +00:00

7 lines
242 B
TypeScript

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
}