괄호 앞 음수 분배 스테이지 추가

This commit is contained in:
2026-05-23 12:15:53 +09:00
parent 1ed0611b9d
commit 5ee33bf0d3
13 changed files with 1644 additions and 31 deletions
+10
View File
@@ -0,0 +1,10 @@
declare module "react-katex" {
import type { ComponentType } from "react";
interface MathComponentProps {
math: string;
}
export const InlineMath: ComponentType<MathComponentProps>;
export const BlockMath: ComponentType<MathComponentProps>;
}