UNPKG

121 BTypeScriptView Raw
1export interface IPoint {
2 x: number;
3 y: number;
4}
5export interface IVector2D {
6 v1: IPoint;
7 v2: IPoint;
8}