UNPKG

@formant/ava-react

Version:

React components of AVA.

12 lines (11 loc) 371 B
export type ImageExtra = { jumpUrl?: string; }; /** * 获取 html 元素的内容,并转换为可以复制粘贴的 html string */ export declare function transformHtml({ elements, imageExtra, replaceType, }: { elements: HTMLCollectionOf<Element> | HTMLElement[]; replaceType?: 'image' | 'text' | 'none'; imageExtra?: ImageExtra; }): Promise<string>;