mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
13 lines
494 B
TypeScript
13 lines
494 B
TypeScript
import { prettyPrint } from 'html';
|
|
|
|
prettyPrint('<h2><strong>Hello, <a href="http://example.com">World</a>!</strong></h2>'); // $ExpectType string
|
|
prettyPrint('<h2><strong>Hello, <a href="http://example.com">World</a>!</strong></h2>', {}); // $ExpectType string
|
|
prettyPrint('<h2><strong>Hello, <a href="http://example.com">World</a>!</strong></h2>', {
|
|
brace_style: 'collapse',
|
|
indent_scripts: 'keep',
|
|
indent_size: 2,
|
|
indent_char: ' ',
|
|
max_char: 5,
|
|
unformatted: [],
|
|
});
|