import * as common from "../../common/src"; export interface PlayId { id: string; } export interface Play extends PlayId, common.GamePlay {} export interface PlayWithGame { play: Play; game: common.Game; content: common.Content; } export interface PlayWithGameAndToken extends PlayWithGame { playToken: common.PlayToken; } export interface CreatePlayParams { gameCode: string; idToken: string; roomId: string; contentCode?: string; contentVersion?: string; ticketCode: string; } export interface MemberCheckUrl { url: string; } export interface MemberCheckResult { result: boolean; contentUrl?: string; }