12 lines
370 B
TypeScript
12 lines
370 B
TypeScript
/**
|
|
Decode changes from a JS API to a page object.
|
|
Only the content can be edited by plugin's hooks.
|
|
|
|
@param {Output} output
|
|
@param {Page} page: page instance to edit
|
|
@param {Object} result: result from API
|
|
@return {Page}
|
|
*/
|
|
declare function decodePage(output: any, page: any, result: any): any;
|
|
export default decodePage;
|
|
//# sourceMappingURL=decodePage.d.ts.map
|