UNPKG

lexical-remark

Version:

This package contains Markdown helpers and functionality for Lexical using remark-parse.

15 lines (11 loc) 265 B
import { Content, Parent } from 'mdast'; export type YouTube = { type: 'youtube'; videoId: string; }; export type Attachment = Parent & { filename: string; type: 'attachment'; url: string; }; export type Node = Parent | Content | YouTube | Attachment;