import * as common from "@shinonomekazan/scrap-conan-online"; export function convertPlayToPlayResponse(playId: string, play: common.GamePlay) { return { id: playId, createdAt: play.createdAt, gameCode: play.gameCode, ownerUserId: play.ownerUserId, players: play.players, sate: play.state, }; }