DefinitelyTyped/types/html-escaper/html-escaper-tests.ts
panManfredini 0e3322a1a0
tested and linted (#44466)
Co-authored-by: panManfredini <motherfucker@motherfucker.com>
2020-05-13 15:32:00 -07:00

8 lines
168 B
TypeScript

import { escape, unescape } from 'html-escaper' ;
// $ExpectType string
const escaped = escape("<bella>");
// $ExpectType string
const unescaped = unescape(escaped);