Skip to content

Commit 1ed4c03

Browse files
committed
feat: add helper interfaces and types
1 parent 226a8da commit 1ed4c03

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export interface Person {
2+
name: string;
3+
age: number;
4+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Person } from '../model/person';
2+
3+
export type Student = Person;

0 commit comments

Comments
 (0)