summaryrefslogtreecommitdiffstats
path: root/lib/api/decodePage.js
blob: 5cce56c5ae760dd048f56bdf1b511afbce055dce (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 object

    @param {Output} output
    @param {Page} page: page instance to edit
    @param {Object} result: result from API
    @return {Page}
*/
function decodePage(output, page, result) {
    // todo
    return page;
}

module.exports = decodePage;