UNPKG

@blocknote/core

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

8 lines (6 loc) 282 B
export const parseVideoElement = (videoElement: HTMLVideoElement) => { const url = videoElement.src || undefined; const previewWidth = videoElement.width || undefined; const name = videoElement.getAttribute("data-name") || undefined; return { url, previewWidth, name }; };