11 lines
204 B
TypeScript
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
|