devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
31 lines (30 loc) • 833 B
JavaScript
export class TableBordersBaseApi {
top;
right;
bottom;
left;
constructor(top, right, bottom, left) {
Object.assign(this, { top, right, bottom, left });
}
}
export class TableBordersApi extends TableBordersBaseApi {
insideHorizontal;
insideVertical;
constructor(top, right, bottom, left, insideHorizontal, insideVertical) {
super(top, right, bottom, left);
Object.assign(this, { insideHorizontal, insideVertical });
}
}
export class TableCellBordersApi extends TableBordersBaseApi {
constructor(top, right, bottom, left) {
super(top, right, bottom, left);
}
}
export class TableBorderApi {
style;
color;
width;
constructor(style, color, width) {
Object.assign(this, { style, color, width });
}
}