RemoteTLStoreWithStatus
type RemoteTLStoreWithStatus = Exclude<
TLStoreWithStatus,
| {
status: 'not-synced'
}
| {
status: 'synced-local'
}
>
type RemoteTLStoreWithStatus = Exclude<
TLStoreWithStatus,
| {
status: 'not-synced'
}
| {
status: 'synced-local'
}
>