mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-01 14:02:18 +02:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import type { SessionSaveData, SystemSaveData } from "#app/system/game-data";
|
|
|
|
export interface UpdateAllSavedataRequest {
|
|
system: SystemSaveData;
|
|
session: SessionSaveData;
|
|
sessionSlotId: number;
|
|
clientSessionId: string;
|
|
}
|