world/book/node_modules/honkit/lib/models/summaryPart.d.ts
2025-05-12 05:38:44 +09:00

23 lines
619 B
TypeScript

import Immutable from "immutable";
type Articles = Immutable.List<any>;
declare const SummaryPart_base: Immutable.Record.Class;
declare class SummaryPart extends SummaryPart_base {
getLevel(): string;
getTitle(): string;
getArticles(): Articles;
/**
* Create a new level for a new child article
*
* @return {string}
*/
createChildLevel(): string;
/**
* Create a SummaryPart
*
* @param {Object} def
* @return {SummaryPart}
*/
static create(def: any, level: any): SummaryPart;
}
export default SummaryPart;
//# sourceMappingURL=summaryPart.d.ts.map