cra-template-overwolf-typescript-redux
Version:
This is the official [Overwolf TypeScript Redux](https://github.com/AlbericoD/overwolf-modern-react-boilerplate) template for [Create React App](https://github.com/facebook/create-react-app).
29 lines (24 loc) • 730 B
text/typescript
//Hearthstone Game Events
//@see Please read the overwolf.games.events documentation page to learn how to use Overwolf game events.
//Heathstone Game Features
//@see https://overwolf.github.io/docs/api/overwolf-games-events-hearthstone
export const REQUIRED_FEATURES = [
"gep_internal",
"scene_state",
"collection",
"decks",
"match",
"match-info",
];
export const RETRY_TIMES = 10;
// register gep events
export const REGISTER_RETRY_TIMEOUT = 10000;
//same name in the public/app/manifest.json "windows"
export const WINDOW_NAMES = {
BACKGROUND: "background",
SETTINGS: "settings",
INGAME: "in_game",
DESKTOP: "desktop",
NOTIFICATION: "notification",
};
export const DISPLAY_OVERWOLF_HOOKS_LOGS = true;