/** * 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; }