UNPKG

analytica-frontend-lib

Version:

Repositório público dos componentes utilizados nas plataformas da Analytica Ensino

12 lines 536 B
/** * Test double for `react-markdown`. The real package ships ESM only and * cannot be executed by `ts-jest` without a heavy transformIgnorePatterns * rewrite. This mock parses a minimal subset (bold, italics, code, bullet * lists) that our tests rely on and renders deterministic DOM. */ type ReactMarkdownProps = { children?: string; }; export default function ReactMarkdownMock({ children, }: Readonly<ReactMarkdownProps>): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=mockReactMarkdown.d.ts.map