UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 456 B
import { ModelChangeType } from '../enums'; export class RangePermissionsChangedSubDocumentChange { constructor(subDocumentId, permission) { this.subDocumentId = subDocumentId; this.permission = permission; this.type = ModelChangeType.RangePermissionsChanged; } } export class RangePermissionsPropertiesChange { constructor() { this.type = ModelChangeType.RangePermissionsPropertiesChanged; } }