UNPKG

html-to-md

Version:

A JS library for convert HTML<String> to markdown<String>, gzip 10kb

9 lines (8 loc) 328 B
import SelfCloseTag from '../SelfCloseTag'; import { SelfCloseTagOptions } from '../type'; declare class Img extends SelfCloseTag { constructor(str: string, tagName: string | undefined, options: SelfCloseTagOptions); beforeMergeSpace(): string; exec(prevGap?: string, endGap?: string): string; } export default Img;