10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
/**
|
|
* Parse a page, read its content and parse the YAMl header
|
|
*
|
|
* @param {Book} book
|
|
* @param {Page} page
|
|
* @return {Promise<Page>}
|
|
*/
|
|
declare function parsePage(book: any, page: any): any;
|
|
export default parsePage;
|
|
//# sourceMappingURL=parsePage.d.ts.map
|