Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 284 Bytes

File metadata and controls

30 lines (24 loc) · 284 Bytes

Types

Coordinate

interface Coordinate {
  latitude: number;
  longitude: number;
}

Point

interface Point {
  x: number;
  y: number;
}

EdgeInsets

interface EdgeInsets {
  top: number;
  left: number;
  bottom: number;
  right: number;
}