mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
11 lines
404 B
Swift
11 lines
404 B
Swift
import Foundation
|
|
import Display
|
|
|
|
public extension PresentationSurfaceLevel {
|
|
static let calls = PresentationSurfaceLevel(rawValue: 1)
|
|
static let overlayMedia = PresentationSurfaceLevel(rawValue: 2)
|
|
static let notifications = PresentationSurfaceLevel(rawValue: 3)
|
|
static let passcode = PresentationSurfaceLevel(rawValue: 4)
|
|
static let update = PresentationSurfaceLevel(rawValue: 5)
|
|
}
|