2022-01-01 10:39:33 +01:00
|
|
|
export type UnreadNotification = {
|
|
|
|
direct: boolean
|
|
|
|
local: boolean
|
|
|
|
public: boolean
|
|
|
|
}
|
|
|
|
|
2022-01-01 14:41:28 +01:00
|
|
|
export type UseMarker = {
|
|
|
|
home: boolean
|
|
|
|
notifications: boolean
|
2022-03-18 16:46:22 +01:00
|
|
|
mentions: boolean
|
2022-01-01 14:41:28 +01:00
|
|
|
}
|
|
|
|
|
2022-01-01 10:39:33 +01:00
|
|
|
export type Timeline = {
|
|
|
|
unreadNotification: UnreadNotification
|
2022-01-01 14:41:28 +01:00
|
|
|
useMarker: UseMarker
|
2022-01-01 10:39:33 +01:00
|
|
|
}
|
|
|
|
export type Setting = {
|
|
|
|
accountID: string
|
|
|
|
timeline: Timeline
|
|
|
|
}
|
|
|
|
|
|
|
|
export type BaseSettings = Array<Setting>
|