11 lines
379 B
TypeScript
11 lines
379 B
TypeScript
/**
|
|
Parse a structure file (ex: SUMMARY.md, GLOSSARY.md).
|
|
It uses the configuration to find the specified file.
|
|
|
|
@param {Book} book
|
|
@param {string} type: one of ["glossary", "readme", "summary"]
|
|
@return {Promise<List|Map>}
|
|
*/
|
|
declare function parseStructureFile(book: any, type: any): any;
|
|
export default parseStructureFile;
|
|
//# sourceMappingURL=parseStructureFile.d.ts.map
|