From 1b5aba33f9b75006670c4f5f61dfedf35ccac4c4 Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Thu, 6 Feb 2020 11:11:09 -0500 Subject: [PATCH] type change to accommodate dictionary comparison. --- MVMCore/MVMCore/Models/JSON/JSONHelper.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/Models/JSON/JSONHelper.swift b/MVMCore/MVMCore/Models/JSON/JSONHelper.swift index eebb6ab..a6a61ad 100644 --- a/MVMCore/MVMCore/Models/JSON/JSONHelper.swift +++ b/MVMCore/MVMCore/Models/JSON/JSONHelper.swift @@ -9,7 +9,7 @@ import Foundation public typealias JSONArray = [[String: Any]] -public typealias JSONDictionary = [String: Any] +public typealias JSONDictionary = [String: AnyHashable] public enum JSONError: Error { case pathNotFound