mirror of
https://github.com/funamitech/mastodon
synced 2024-11-24 15:16:33 +09:00
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',
|
|
);
|