6 lines
No EOL
111 B
TypeScript
6 lines
No EOL
111 B
TypeScript
export interface PointInterface {
|
|
x: number;
|
|
y: number;
|
|
direction: string;
|
|
toJson() : object;
|
|
} |