9 lines
331 B
TypeScript
9 lines
331 B
TypeScript
export type PrivateRoomEvent =
|
|
| { type: "PrivateRoomInit" }
|
|
| { type: "PrivateRoomRefresh" }
|
|
| { type: "PrivateRoomLoadMore" }
|
|
| { type: "PrivateRoomUnlockRequested"; momentId: string }
|
|
| { type: "PrivateRoomUnlockConfirmed" }
|
|
| { type: "PrivateRoomUnlockCancelled" }
|
|
| { type: "PrivateRoomUnlockPaywallConsumed" };
|