mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 00:52:47 +02:00
* [Bug] Fixing continue error when game finishes * migrate: `GameData.tryClearSession` to async/await * install dev: msw module * add: game-data test => tryClearSession tests --------- Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
/**
|
|
* Pokerogue API response for path: `/savedata/session/clear`
|
|
*/
|
|
export interface PokerogueApiClearSessionData {
|
|
/** Contains the error message if any occured */
|
|
error?: string;
|
|
/** Is `true` if the request was successfully processed */
|
|
success?: boolean;
|
|
}
|