DefinitelyTyped/types/html-to-draftjs/html-to-draftjs-tests.ts

10 lines
282 B
TypeScript
Raw Permalink Normal View History

2019-09-25 16:59:39 +00:00
import htmlToDraft from 'html-to-draftjs';
import { ContentBlock } from 'draft-js';
const blocksFromHtml = htmlToDraft('<p>test</p>');
// $ExpectType ContentBlock[]
const contentBlocks = blocksFromHtml.contentBlocks;
// $ExpectType any
const entityMap = blocksFromHtml.entityMap;