This commit is contained in:
2026-03-04 23:09:02 +01:00
parent 94ec4e7135
commit 409f44476f
9 changed files with 259 additions and 42 deletions

View File

@@ -1,4 +1,4 @@
import {type WhiteboardJoinPolicy, WhiteboardState} from "@/enums";
import {MembershipStatus, type WhiteboardJoinPolicy, WhiteboardState} from "@/enums";
export interface User {
userId: string
@@ -22,6 +22,11 @@ export interface AuthResponse {
refreshToken: string
}
export interface JoinResult {
whiteboardId: string
status: MembershipStatus
}
export interface Whiteboard {
id: string
ownerId: string