diff options
Diffstat (limited to 'src/types.ts')
-rw-r--r-- | src/types.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/types.ts b/src/types.ts index dc429a4..d385d2a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -8,5 +8,13 @@ export interface User extends Base { username: string; } -export interface Event extends Base {} +export interface Event extends Base { + data: { + name: string; + participants: string[]; + date: string; + conferenceId: string; + attendanceId: string; + } +} |