misc_pterodactyl-panel/resources/scripts/plugins/useFlash.ts

10 lines
306 B
TypeScript
Raw Normal View History

import { Actions, useStoreActions } from 'easy-peasy';
import { FlashStore } from '@/state/flashes';
import { ApplicationStore } from '@/state';
const useFlash = (): Actions<FlashStore> => {
return useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
};
export default useFlash;