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

12 lines
246 B
TypeScript
Raw Normal View History

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