blob: b9941c15d23b7fe58d79bf1a9f7a16528d97692b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
Decode changes from a JS API to a page boject
@param {Output} output
@param {Page} page
@param {Object} result
@return {Page}
*/
function decodePage(output, page, result) {
}
module.exports = decodePage;
|