mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
9 lines
225 B
Swift
9 lines
225 B
Swift
import Foundation
|
|
|
|
extension Duration {
|
|
var timeInterval: TimeInterval {
|
|
return TimeInterval(self.components.seconds) +
|
|
TimeInterval(self.components.attoseconds) / 1_000_000_000_000_000_000
|
|
}
|
|
}
|