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

11 lines
279 B
TypeScript

/**
Apply a list of operations to a page and
output the new page.
@param {Page}
@param {List|Array<Transformation>}
@return {Promise<Page>}
*/
declare function modifyHTML(page: any, operations: any): any;
export default modifyHTML;
//# sourceMappingURL=modifyHTML.d.ts.map