52 lines
993 B
TypeScript
52 lines
993 B
TypeScript
/**
|
|
* Return a JSON representation of a book with a specific file
|
|
*
|
|
* @param {Book} output
|
|
* @param {Page} page
|
|
* @return {Object}
|
|
*/
|
|
declare function encodeOutputWithPage(output: any, page: any): {
|
|
summary: {
|
|
file: {
|
|
path: any;
|
|
mtime: any;
|
|
type: any;
|
|
};
|
|
parts: any;
|
|
};
|
|
glossary: {
|
|
file: {
|
|
path: any;
|
|
mtime: any;
|
|
type: any;
|
|
};
|
|
entries: any;
|
|
};
|
|
readme: {
|
|
file: {
|
|
path: any;
|
|
mtime: any;
|
|
type: any;
|
|
};
|
|
};
|
|
config: any;
|
|
languages: {
|
|
file: {
|
|
path: any;
|
|
mtime: any;
|
|
type: any;
|
|
};
|
|
list: any;
|
|
};
|
|
gitbook: {
|
|
version: any;
|
|
time: Date;
|
|
};
|
|
honkit: {
|
|
version: any;
|
|
time: Date;
|
|
};
|
|
book: any;
|
|
};
|
|
export default encodeOutputWithPage;
|
|
//# sourceMappingURL=encodeOutputWithPage.d.ts.map
|