Skip to content
Snippets Groups Projects
Commit bb4beae0 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Add missing (public) ReceiveFileCallback.init

parent b4e5ad7d
No related branches found
No related tags found
1 merge request!102Release 1.0.0
...@@ -2,6 +2,10 @@ import Bindings ...@@ -2,6 +2,10 @@ import Bindings
import XCTestDynamicOverlay import XCTestDynamicOverlay
public struct ReceiveFileCallback { public struct ReceiveFileCallback {
public init(handle: @escaping (Result<ReceivedFile, NSError>) -> Void) {
self.handle = handle
}
public var handle: (Result<ReceivedFile, NSError>) -> Void public var handle: (Result<ReceivedFile, NSError>) -> Void
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment