UNPKG

@syncfusion/ej2-documenteditor

Version:

Feature-rich document editor control with built-in support for context menu, options pane and dialogs.

36 lines (35 loc) 628 B
/** * Size defines and processes the size(width/height) of the objects * @private */ export declare class Size { /** * Sets the height of an object * * @default 0 */ height: number; /** * Sets the width of an object * * @default 0 */ width: number; constructor(width?: number, height?: number); /** * isEmpty method \ * * @returns { boolean } isEmpty method .\ * * @private */ isEmpty(): boolean; /** * clone method \ * * @returns { Size } clone method .\ * * @private */ clone(): Size; }