import { Property, ChildProperty } from '@syncfusion/ej2-base';

/**
 * 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;

}