6 lines
51 B
TypeScript
6 lines
51 B
TypeScript
|
export interface Point
|
||
|
{
|
||
|
x: number
|
||
|
y: number
|
||
|
}
|