mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
8 lines
167 B
Swift
8 lines
167 B
Swift
// Copyright 2017 Yandex LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public protocol TimeTracking: AnyObject {
|
|
func track(_ time: TimeInterval, timestamp: Date)
|
|
}
|