mirror of
https://github.com/funamitech/mastodon
synced 2024-12-12 05:39:02 +09:00
919ed0e469
Port 4b7bc1f07c
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
export const openDropdownMenu = createAction<{
|
|
id: string;
|
|
keyboard: boolean;
|
|
scrollKey: string;
|
|
}>('dropdownMenu/open');
|
|
|
|
export const closeDropdownMenu = createAction<{ id: string }>(
|
|
'dropdownMenu/close',
|
|
);
|