SYMBOL INDEX (41 symbols across 15 files) FILE: examples/app-router/app/layout.tsx function RootLayout (line 10) | function RootLayout({ children }: { children: React.ReactNode }) { FILE: examples/app-router/app/loading.tsx function Loading (line 1) | function Loading() { FILE: examples/app-router/app/page.tsx function Home (line 4) | async function Home() { FILE: examples/pages-router/pages/_app.tsx function App (line 5) | function App({ Component, pageProps }: AppProps) { FILE: examples/pages-router/pages/_document.tsx function Document (line 3) | function Document() { FILE: examples/pages-router/pages/index.tsx function Home (line 20) | function Home({ mdxSource }: InferGetStaticPropsType { function traverseNode (line 133) | function traverseNode({ FILE: packages/mdx/src/plugins/rehype/shiki-constants.ts constant LINE_HIGHLIGHT_CLASS_NAME (line 11) | const LINE_HIGHLIGHT_CLASS_NAME = 'line-highlight'; constant LINE_FOCUS_CLASS_NAME (line 12) | const LINE_FOCUS_CLASS_NAME = 'line-focus'; constant LINE_DIFF_ADD_CLASS_NAME (line 13) | const LINE_DIFF_ADD_CLASS_NAME = 'line-diff line-add'; constant LINE_DIFF_REMOVE_CLASS_NAME (line 14) | const LINE_DIFF_REMOVE_CLASS_NAME = 'line-diff line-remove'; type ShikiLang (line 16) | type ShikiLang = BundledLanguage | 'ansi' | 'text'; type ShikiTheme (line 17) | type ShikiTheme = (typeof SHIKI_THEMES)[number]; constant SHIKI_CSS_THEME (line 19) | const SHIKI_CSS_THEME = createCssVariablesTheme({ constant DEFAULT_LANG (line 71) | const DEFAULT_LANG = 'text' as const; constant DEFAULT_DARK_THEME (line 72) | const DEFAULT_DARK_THEME: ShikiTheme = 'dark-plus' as const; constant DEFAULT_LIGHT_THEME (line 73) | const DEFAULT_LIGHT_THEME: ShikiTheme = 'github-light-default' as const; constant DEFAULT_THEMES (line 74) | const DEFAULT_THEMES: [ShikiTheme, ShikiTheme, ThemeRegistration] = [ constant DEFAULT_LANG_ALIASES (line 87) | const DEFAULT_LANG_ALIASES: Record = { constant UNIQUE_LANGS (line 403) | const UNIQUE_LANGS = Array.from(new Set(Object.values(DEFAULT_LANG_ALIAS... constant SHIKI_THEMES (line 405) | const SHIKI_THEMES = [ constant DEFAULT_LANGS (line 470) | const DEFAULT_LANGS = [ constant SHIKI_TRANSFORMERS (line 507) | const SHIKI_TRANSFORMERS: ShikiTransformer[] = [ FILE: packages/mdx/src/plugins/rehype/shiki/custom-language.ts type TextMateGrammarType (line 88) | type TextMateGrammarType = typeof TextMateGrammar.infer; FILE: packages/mdx/src/plugins/rehype/twoslash/config.ts function onTwoslashError (line 15) | function onTwoslashError(err: unknown, code: string, lang: string) { function onShikiError (line 19) | function onShikiError(err: unknown, code: string, lang: string) { function getTwoslashOptions (line 23) | function getTwoslashOptions( function renderMarkdown (line 118) | function renderMarkdown(this: ShikiTransformerContextCommon, md: string)... function renderMarkdownInline (line 146) | function renderMarkdownInline( function parseLineComment (line 159) | function parseLineComment(line: string): { word: string; href: string } ... type Url (line 188) | type Url = `https://${string}`; function checkIsExternalLink (line 189) | function checkIsExternalLink(href: string | undefined): href is Url { FILE: packages/mdx/src/plugins/rehype/utils.ts function classNameOrEmptyArray (line 5) | function classNameOrEmptyArray(element: Element): string[] { function getLanguage (line 11) | function getLanguage( FILE: packages/mdx/src/types/index.ts type SerializeSuccess (line 3) | type SerializeSuccess = SerializeResult & { compiledSource: string }; FILE: packages/mdx/src/ui/popup.tsx type PopupContextObject (line 18) | interface PopupContextObject { function Popup (line 28) | function Popup({ delay = 300, children }: { delay?: number; children: Re...