UNPKG

devexpress-richedit

Version:

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

10 lines (9 loc) 298 B
export class RtfRevisionAuthors { static unknownAuthor = "Unknown"; authors = []; getAuthor(authorIndex) { if (authorIndex < 0 || authorIndex >= this.authors.length) return RtfRevisionAuthors.unknownAuthor; return this.authors[authorIndex]; } }