matthewp / ts-types-html-parser

HTML parser in TS types

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ts-types-html-parser

const html = `
  <div id="foo" class="one two">
    <span id="inner1">
      <span class="inner2"></span>
    </span>
  </div>
`;
type ast = ParseFragment<typeof html>;

ast['attrs']['id'];
// ^ foo

License

BSD-2-Clause

About

HTML parser in TS types


Languages

Language:TypeScript 99.6%Language:JavaScript 0.4%