Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge dev/update-bindings into development
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -2,10 +2,10 @@ import Bindings
import XCTestDynamicOverlay
public struct GroupChatJoinGroup {
public var run: (Int) throws -> Void
public var run: (Data) throws -> Void
public func callAsFunction(trackedGroupId: Int) throws {
try run(trackedGroupId)
public func callAsFunction(serializedGroupData: Data) throws {
try run(serializedGroupData)
}
}
Loading