mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 01:13:11 +08:00
13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
import { ActionType } from '../action-types';
|
|
import { Theme, ThemeColors } from '../../interfaces';
|
|
|
|
export interface SetThemeAction {
|
|
type: ActionType.setTheme;
|
|
payload: ThemeColors;
|
|
}
|
|
|
|
export interface FetchThemesAction {
|
|
type: ActionType.fetchThemes;
|
|
payload: Theme[];
|
|
}
|