1
0
Fork 0
mirror of synced 2024-09-19 18:59:06 +12:00
budibase/packages/types/src/sdk/websocket.ts

10 lines
164 B
TypeScript
Raw Normal View History

export interface SocketSession {
2023-06-01 03:08:35 +12:00
_id: string
email: string
firstName?: string
lastName?: string
sessionId: string
room?: string
connectedAt: number
2023-06-01 03:08:35 +12:00
}