Skip to content

Commit

Permalink
feat: 수평선 타입 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Nov 26, 2024
1 parent e2fc884 commit ce30317
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion @noctaCrdt/Interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ import { Block, Char } from "./Node";
import { Page } from "./Page";
import { EditorCRDT } from "./Crdt";

export type ElementType = "p" | "h1" | "h2" | "h3" | "ul" | "ol" | "li" | "checkbox" | "blockquote";
export type ElementType =
| "p"
| "h1"
| "h2"
| "h3"
| "ul"
| "ol"
| "li"
| "checkbox"
| "blockquote"
| "hr";

export type AnimationType = "none" | "highlight" | "gradation";

Expand Down

0 comments on commit ce30317

Please sign in to comment.