Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Jan 15, 2025
1 parent 8badbe4 commit f3d95ce
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/types/Room.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export interface Room {
id: string
name: string
description: string
info: string
capacity?: number

youtubeStreamUrl_1?: string
youtubeStreamUrl_2?: string
youtubeStreamUrl_3?: string
youtubeStreamUrl_4?: string
translationUrl?: string
}
19 changes: 19 additions & 0 deletions lib/types/Speaker.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { Session } from './Session'

export interface Speaker {
id: string
sourceId: string
name: string
role?: string
company?: string
website?: string
twitter?: string
lens?: string
farcaster?: string
github?: string
avatar?: string
description?: string
tracks?: string[]
eventDays?: number[]
sessions?: Session[]
}

0 comments on commit f3d95ce

Please sign in to comment.