14 lines
263 B
Swift
14 lines
263 B
Swift
import Foundation
|
|
|
|
public enum RDEPUBNavigatorState: String, Codable {
|
|
case initializing
|
|
case loading
|
|
case idle
|
|
case jumping
|
|
case moving
|
|
case repaginating
|
|
|
|
public var isStableForSnapshotApplication: Bool {
|
|
self == .idle
|
|
}
|
|
} |