mioku-plugin-meme 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/runtime.ts +2 -2
package/package.json
CHANGED
package/runtime.ts
CHANGED
|
@@ -14,11 +14,11 @@ const MEME_PLUGIN_NAME = "meme";
|
|
|
14
14
|
export function setMemeRuntimeState(
|
|
15
15
|
nextState: MemeRuntimeState,
|
|
16
16
|
): MemeRuntimeState {
|
|
17
|
-
return setPluginRuntimeState
|
|
17
|
+
return setPluginRuntimeState(MEME_PLUGIN_NAME, nextState) as MemeRuntimeState;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export function getMemeRuntimeState(): MemeRuntimeState {
|
|
21
|
-
return getPluginRuntimeState
|
|
21
|
+
return getPluginRuntimeState(MEME_PLUGIN_NAME) as MemeRuntimeState;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
export function resetMemeRuntimeState(): void {
|