page.d.ts 204 B

1234567891011
  1. /**
  2. Parse content of a page
  3. @param {string} html
  4. @return {Object}
  5. */
  6. declare function parsePage(html: any): {
  7. content: any;
  8. };
  9. export default parsePage;
  10. //# sourceMappingURL=page.d.ts.map