@rr0/cms
Version:
RR0 Content Management System (CMS)
11 lines (10 loc) • 359 B
TypeScript
import { HtmlRR0Context } from "RR0Context.js";
export declare class Chapter {
protected startFileName: string;
readonly context: HtmlRR0Context;
subs: Chapter[];
constructor(parentContext: HtmlRR0Context, startFileName: string);
scan(): Promise<void>;
toString(prefix?: string): string;
update(parent?: Chapter): Promise<void>;
}