5 lines
55 B
TypeScript
5 lines
55 B
TypeScript
export type Point = {
|
|
x: number;
|
|
y: number;
|
|
};
|
export type Point = {
|
|
x: number;
|
|
y: number;
|
|
};
|