mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-01 05:52:17 +02:00
21 lines
427 B
TypeScript
21 lines
427 B
TypeScript
import type { SystemSaveData } from "#app/system/game-data";
|
|
|
|
export interface GetSystemSavedataRequest {
|
|
clientSessionId: string;
|
|
}
|
|
|
|
export class UpdateSystemSavedataRequest {
|
|
clientSessionId: string;
|
|
trainerId?: number;
|
|
secretId?: number;
|
|
}
|
|
|
|
export interface VerifySystemSavedataRequest {
|
|
clientSessionId: string;
|
|
}
|
|
|
|
export interface VerifySystemSavedataResponse {
|
|
valid: boolean;
|
|
systemData: SystemSaveData;
|
|
}
|