mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
9 lines
338 B
Swift
9 lines
338 B
Swift
import Defaults
|
|
|
|
extension Defaults.Keys {
|
|
static let layout = Key<ListingLayout>("listingLayout", default: .cells)
|
|
static let tabSelection = Key<TabSelection>("tabSelection", default: .subscriptions)
|
|
static let searchQuery = Key<String>("searchQuery", default: "")
|
|
static let openChannel = Key<Channel?>("openChannel")
|
|
}
|