ultisuite-client/lib/drive/docs-format-actions.ts
R3D347HR4Y 303b2b1074
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
wow
2026-06-11 01:22:40 +02:00

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)
}