1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00
Pterodactyl-Panel/resources/scripts/easy-peasy.d.ts

11 lines
447 B
TypeScript
Raw Normal View History

// noinspection ES6UnusedImports
2020-07-05 03:46:09 +02:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import EasyPeasy, { Actions, State } from 'easy-peasy';
import { ApplicationStore } from '@/state';
declare module 'easy-peasy' {
export function useStoreState<Result>(mapState: (state: State<ApplicationStore>) => Result): Result;
export function useStoreActions<Result>(mapActions: (actions: Actions<ApplicationStore>) => Result): Result;
}