types.ts 82 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5
export interface Points {
  x: number;
  y: number;
  [proppName: string]: any;
}