mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 16:15:22 +00:00
16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
|
|
/**
|
|
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;
|