UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

12 lines (11 loc) 343 B
export class RtfRevisionAuthors { constructor() { this.authors = []; } getAuthor(authorIndex) { if (authorIndex < 0 || authorIndex >= this.authors.length) return RtfRevisionAuthors.unknownAuthor; return this.authors[authorIndex]; } } RtfRevisionAuthors.unknownAuthor = "Unknown";