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 ...@@ -2,11 +2,11 @@ import Bindings
import XCTestDynamicOverlay import XCTestDynamicOverlay
public struct FileTransferRegisterReceivedProgressCallback { public struct FileTransferRegisterReceivedProgressCallback {
public var run: (Data, String, FileTransferProgressCallback) throws -> Void public var run: (Data, Int, FileTransferProgressCallback) throws -> Void
public func callAsFunction( public func callAsFunction(
transferId: Data, transferId: Data,
period: String, period: Int,
callback: FileTransferProgressCallback callback: FileTransferProgressCallback
) throws { ) throws {
try run(transferId, period, callback) try run(transferId, period, callback)
......
...@@ -2,11 +2,11 @@ import Bindings ...@@ -2,11 +2,11 @@ import Bindings
import XCTestDynamicOverlay import XCTestDynamicOverlay
public struct FileTransferRegisterSentProgressCallback { public struct FileTransferRegisterSentProgressCallback {
public var run: (Data, String, FileTransferProgressCallback) throws -> Void public var run: (Data, Int, FileTransferProgressCallback) throws -> Void
public func callAsFunction( public func callAsFunction(
transferId: Data, transferId: Data,
period: String, period: Int,
callback: FileTransferProgressCallback callback: FileTransferProgressCallback
) throws { ) throws {
try run(transferId, period, callback) 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