devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 470 B
JavaScript
import { ModelChangeType } from '../enums';
export class RangePermissionsChangedSubDocumentChange {
subDocumentId;
permission;
type = ModelChangeType.RangePermissionsChanged;
constructor(subDocumentId, permission) {
this.subDocumentId = subDocumentId;
this.permission = permission;
}
}
export class RangePermissionsPropertiesChange {
type = ModelChangeType.RangePermissionsPropertiesChanged;
constructor() { }
}