mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
// noinspection ES6UnusedImports
|
|
import EasyPeasy from 'easy-peasy';
|
|
import { ApplicationStore } from '@/state';
|
|
|
|
declare module 'easy-peasy' {
|
|
export function useStoreState<Result>(
|
|
mapState: (state: ApplicationStore) => Result,
|
|
): Result;
|
|
}
|