devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 595 B
TypeScript
import { IPoint, IRectangle, ISize } from '@devexpress/utils/lib/geometry/interfaces';
export interface IPointDirectionAdaptor {
isXDirection(): boolean;
init(obj: IPoint): IPointDirectionAdaptor;
position: number;
anotherPosition: number;
}
export interface ISizeDirectionAdaptor {
isXDirection(): boolean;
init(obj: ISize): ISizeDirectionAdaptor;
length: number;
anotherLength: number;
}
export interface IRectangleDirectionAdaptor extends IPointDirectionAdaptor, ISizeDirectionAdaptor {
init(obj: IRectangle): IRectangleDirectionAdaptor;
}