mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
8023cfeb47
commit_hash:effe8387a04fdb306cd2b486ce967fd92aaf6ce9
8 lines
119 B
Swift
8 lines
119 B
Swift
import Foundation
|
|
|
|
extension TimeInterval {
|
|
init(milliseconds: Int) {
|
|
self = Double(milliseconds) / 1000.0
|
|
}
|
|
}
|