10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
/**
|
|
Parse summary in a book, the summary can only be parsed
|
|
if the readme as be detected before.
|
|
|
|
@param {Book} book
|
|
@return {Promise<Book>}
|
|
*/
|
|
declare function parseSummary(book: any): any;
|
|
export default parseSummary;
|
|
//# sourceMappingURL=parseSummary.d.ts.map
|