We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549ddeb commit f563eadCopy full SHA for f563ead
projects/interfaces/vacation-planning/03-landmarks/solution.ts
@@ -17,16 +17,16 @@ export interface Lighthouse extends BaseLandmark {
17
type: "lighthouse";
18
}
19
20
-export interface Park extends BaseLandmark {
21
- acres: number;
22
- type: "park";
23
-}
24
-
25
export interface Mountain extends BaseLandmark {
26
height: number;
27
type: "mountain";
28
29
+export interface Park extends BaseLandmark {
+ acres: number;
+ type: "park";
+}
+
30
export interface River extends BaseLandmark {
31
depth: number;
32
length: number;
0 commit comments