blob: 9ec55bc65f026baff1997c3306a8249f24a94af4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
Encode a page in a context to a JS API
@param {Output} output
@param {Page} page
@return {Object}
*/
function encodePage(output, page) {
}
module.exports = encodePage;
|