mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
15 lines
477 B
TypeScript
15 lines
477 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;
|
|
}
|