Place.d.ts 99 B

12345
  1. import { Point } from "./Point";
  2. export interface Place {
  3. Points: Point[];
  4. Type: string;
  5. }