@syncfusion/ej2-pdfviewer
Version:
Essential JS 2 PDF viewer Component
25 lines (24 loc) • 440 B
TypeScript
/**
* @hidden
* Size defines and processes the size(width/height) of the objects
*/
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);
/**
* @private
* @returns {Size} - Size
*/
clone(): Size;
}