2025-05-12 05:38:44 +09:00

11 lines
204 B
TypeScript

/**
Parse content of a page
@param {string} html
@return {Object}
*/
declare function parsePage(html: any): {
content: any;
};
export default parsePage;
//# sourceMappingURL=page.d.ts.map