Created
February 5, 2022 15:31
-
-
Save kazuooooo/847c1b2707336b8df8c63170a926304f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PiniaPluginContext } from "pinia"; | |
// Plugin | |
const magicNumPlugin = ({ store }: PiniaPluginContext) => { | |
store.magicNumber = 5 | |
} | |
// Typing | |
declare module 'pinia' { | |
export interface PiniaCustomProperties { | |
magicNumber: number | |
} | |
export interface DefineStoreOptionsBase<S, Store> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment