Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
13 lines
349 B
TypeScript
13 lines
349 B
TypeScript
import { createAction } from "@reduxjs/toolkit";
|
|
|
|
import { type LayoutType } from "../is_mobile";
|
|
|
|
export const focusApp = createAction("APP_FOCUS");
|
|
export const unfocusApp = createAction("APP_UNFOCUS");
|
|
|
|
interface ChangeLayoutPayload {
|
|
layout: LayoutType,
|
|
}
|
|
export const changeLayout =
|
|
createAction<ChangeLayoutPayload>("APP_LAYOUT_CHANGE");
|