diff --git a/ios/Temp/DictionaryRepresentable.swift b/ios/Temp/DictionaryRepresentable.swift new file mode 100644 index 00000000..b9108ab5 --- /dev/null +++ b/ios/Temp/DictionaryRepresentable.swift @@ -0,0 +1,12 @@ +// +// DictionaryRepresentable.swift +// react-native-ios-modal +// +// Created by Dominic Go on 9/27/24. +// + +import Foundation + +public protocol DictionaryRepresentable { + var asDictionary: [String: Any] { get }; +};