UNPKG

@syncfusion/ej2-pdfviewer

Version:
22 lines (18 loc) 357 B
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; }