@syncfusion/ej2-pdfviewer
Version:
Essential JS 2 PDF viewer Component
22 lines (18 loc) • 357 B
TypeScript
import { Property, ChildProperty } from '@syncfusion/ej2-base'; /*externalscript*/
/**
* Interface for a class Point
*/
export interface PointModel {
/**
* Sets the x-coordinate of a position
*
* @default 0
*/
x?: number;
/**
* Sets the y-coordinate of a position
*
* @default 0
*/
y?: number;
}