@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
15 lines (11 loc) • 424 B
text/typescript
import type { ScreenBattleViewConfig } from './ScreenBattleViewConfig';
import type { ScreenRaceViewConfig } from './ScreenRaceViewConfig';
export interface CountDownNextViewRace {
nextView: 'Race';
config: ScreenRaceViewConfig;
}
export interface CountDownNextViewBattle {
nextView: 'Battle';
config: ScreenBattleViewConfig;
}
export type ScreenCountdownParams = CountDownNextViewRace | CountDownNextViewBattle;