import { Node } from '@tiptap/core'; export interface IframeOptions { HTMLAttributes: Record; } declare module '@tiptap/core' { interface Commands { iframe: { /** * 插入 Iframe 块节点。 */ setIframe: (attributes: { src: string; }) => ReturnType; }; } } export declare const Iframe: Node; export default Iframe;