react-pdf-html-flabs-2
Version:
Html component for react-pdf with CSS support optimized
3 lines (2 loc) • 543 B
TypeScript
export type Tag = 'html' | 'body' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div' | 'p' | 'blockquote' | 'article' | 'caption' | 'form' | 'hr' | 'br' | 'address' | 'aside' | 'pre' | 'span' | 'button' | 'label' | 'b' | 'strong' | 'q' | 'i' | 'em' | 'u' | 's' | 'cite' | 'dfn' | 'code' | 'abbr' | 'sup' | 'sub' | 'a' | 'img' | 'ul' | 'ol' | 'li' | 'dd' | 'dl' | 'dt' | 'fieldset' | 'header' | 'footer' | 'section' | 'table' | 'tr' | 'td' | 'th' | 'thead' | 'tbody';
export declare const isText: Record<Tag, boolean> & Record<string, boolean>;