1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 21:39:36 +02:00
flame/client/src/store/actions/theme.ts

8 lines
172 B
TypeScript
Raw Normal View History

import { ActionType } from '../action-types';
import { Theme } from '../../interfaces';
export interface SetThemeAction {
type: ActionType.setTheme;
payload: Theme;
}