11 lines
259 B
TypeScript
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>;
|
|
}
|