mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
7 lines
211 B
Swift
7 lines
211 B
Swift
|
import Defaults
|
||
|
|
||
|
extension Defaults.Keys {
|
||
|
static let layout = Key<ListingLayout>("listingLayout", default: .cells)
|
||
|
static let tabSelection = Key<TabSelection>("tabSelection", default: .subscriptions)
|
||
|
}
|