5.22
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
#if 0
|
||||
#elif defined(__arm64__) && __arm64__
|
||||
// Generated by Apple Swift version 6.2.3 effective-5.10 (swiftlang-6.2.3.3.21 clang-1700.6.3.2)
|
||||
// Generated by Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.2.3 effective-5.10 (swiftlang-6.2.3.3.21 clang-1700.6.3.2)
|
||||
// swift-compiler-version: Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.4
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -959,10 +959,22 @@ extension M2Kit.M2Radio {
|
||||
}
|
||||
@objc deinit
|
||||
}
|
||||
public enum M2VideoStatus {
|
||||
case none
|
||||
case queueing
|
||||
case loading
|
||||
case done
|
||||
public static func == (a: M2Kit.M2VideoStatus, b: M2Kit.M2VideoStatus) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Utils {
|
||||
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
}
|
||||
@ -1032,6 +1044,8 @@ extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||
extension M2Kit.M2VideoStatus : Swift.Equatable {}
|
||||
extension M2Kit.M2VideoStatus : Swift.Hashable {}
|
||||
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.2.3 effective-5.10 (swiftlang-6.2.3.3.21 clang-1700.6.3.2)
|
||||
// swift-compiler-version: Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.4
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -959,10 +959,22 @@ extension M2Kit.M2Radio {
|
||||
}
|
||||
@objc deinit
|
||||
}
|
||||
public enum M2VideoStatus {
|
||||
case none
|
||||
case queueing
|
||||
case loading
|
||||
case done
|
||||
public static func == (a: M2Kit.M2VideoStatus, b: M2Kit.M2VideoStatus) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Utils {
|
||||
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
}
|
||||
@ -1032,6 +1044,8 @@ extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||
extension M2Kit.M2VideoStatus : Swift.Equatable {}
|
||||
extension M2Kit.M2VideoStatus : Swift.Hashable {}
|
||||
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
|
||||
Reference in New Issue
Block a user