Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit d86c1ed

Browse files
committed
Replace class with interface
1 parent 19b340e commit d86c1ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Component } from '@angular/core';
22

3-
class Menu {
3+
interface Menu {
44
title: string;
55
link: string;
6-
options: { exact: boolean };
6+
options: { exact: boolean };
77
}
88

99
@Component({

0 commit comments

Comments
 (0)