devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 526 B
TypeScript
export declare class CommentListInfo {
id: string;
paraId: number;
}
export declare class CommentListInfoCollection {
mapParaId: Record<number, CommentListInfo>;
mapId: Record<string, CommentListInfo>;
add(info: CommentListInfo): void;
}
export declare class CommentExListInfo {
paraId: number;
paraIdParent: number;
done: number;
}
export declare class CommentExListInfoCollection {
mapParaId: Record<number, CommentExListInfo>;
add(info: CommentExListInfo): void;
}