Interface Point

interface Point {
    x: number;
    y: number;
    icon?: {
        width: number;
        height: number;
    };
}

Properties

Properties

x: number
y: number
icon?: {
    width: number;
    height: number;
}

Type declaration

  • width: number
  • height: number