From f48731865c1318f470bb3bf34d9d7cf1db404419 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 5 Sep 2019 06:12:34 -0700 Subject: [PATCH] Type action --- modern/src/Actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modern/src/Actions.ts b/modern/src/Actions.ts index 4447bf0e..030ec24c 100644 --- a/modern/src/Actions.ts +++ b/modern/src/Actions.ts @@ -92,6 +92,6 @@ export function gotSkinZip(zip: JSZip, store: ModernStore) { }; } -export function setVolume(volume: number) { +export function setVolume(volume: number): ModernAction { return { type: "SET_VOLUME", volume }; }