1
0
Files
world/book/node_modules/honkit/lib/json/encodeOutput.d.ts
2025-05-12 05:38:44 +09:00

51 lines
908 B
TypeScript

/**
* Encode an output to JSON
*
* @param {Output}
* @return {Object}
*/
declare function encodeOutputToJson(output: 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 encodeOutputToJson;
//# sourceMappingURL=encodeOutput.d.ts.map