7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
import type { Editor } from "@tiptap/react"
|
|
import { applyDocsParagraphStyleById } from "@/lib/drive/docs-paragraph-style-apply"
|
|
|
|
export function applyDocsParagraphStyle(editor: Editor, styleId: string) {
|
|
applyDocsParagraphStyleById(editor, styleId)
|
|
}
|