Skip to content

Commit f568bc0

Browse files
committed
Create Event type
1 parent 3272391 commit f568bc0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/routes/Events/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export interface Event {
2+
title: string;
3+
date: Date;
4+
// Convert to Staff type in later PR after converting from interface
5+
host: string;
6+
description: string;
7+
}

0 commit comments

Comments
 (0)