Files
math-quiz/types/react-katex.d.ts
T

11 lines
259 B
TypeScript

declare module "react-katex" {
import type { ComponentType } from "react";
interface MathComponentProps {
math: string;
}
export const InlineMath: ComponentType<MathComponentProps>;
export const BlockMath: ComponentType<MathComponentProps>;
}