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