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

Fix period param type

parent 9ddda84e
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!86Update Bindings
......@@ -2,11 +2,11 @@ import Bindings
import XCTestDynamicOverlay
public struct FileTransferRegisterReceivedProgressCallback {
public var run: (Data, String, FileTransferProgressCallback) throws -> Void
public var run: (Data, Int, FileTransferProgressCallback) throws -> Void
public func callAsFunction(
transferId: Data,
period: String,
period: Int,
callback: FileTransferProgressCallback
) throws {
try run(transferId, period, callback)
......
......@@ -2,11 +2,11 @@ import Bindings
import XCTestDynamicOverlay
public struct FileTransferRegisterSentProgressCallback {
public var run: (Data, String, FileTransferProgressCallback) throws -> Void
public var run: (Data, Int, FileTransferProgressCallback) throws -> Void
public func callAsFunction(
transferId: Data,
period: String,
period: Int,
callback: FileTransferProgressCallback
) throws {
try run(transferId, period, callback)
......
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