mirror of
https://github.com/EmergeTools/Pow.git
synced 2026-03-25 08:55:50 +00:00
10 lines
256 B
Swift
10 lines
256 B
Swift
import Foundation
|
|
|
|
@available(iOS 16.0, *)
|
|
@available(macOS 13.0, *)
|
|
@available(tvOS 16.0, *)
|
|
internal extension Duration {
|
|
var timeInterval: TimeInterval {
|
|
TimeInterval(components.seconds) + TimeInterval(components.attoseconds) / 1e18
|
|
}
|
|
}
|