mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
11 lines
447 B
TypeScript
11 lines
447 B
TypeScript
// noinspection ES6UnusedImports
|
|
// 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;
|
|
}
|