mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 17:42:33 +01:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
// noinspection ES6UnusedImports
|
|
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;
|
|
}
|