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;
|
||
|
}
|