You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rxdb-internal-types.ts currently contains some types copied from RxDB. Two options:
Ask RxDB to add those types to their exports
Don't reference those types at all and just copy the fields into SupabaseReplicationOptions. This might actually be good for readability, and we are already documenting all options in the README anyways. The only downside is that if RxDB adds a new option, it won't automatically become part of our API, but rather will need to be added explicitly. Although arguably, that might also not be the worst anyways in order to make sure any option is actually supported by us (e.g. waitForLeadership is not supported)
The text was updated successfully, but these errors were encountered:
rxdb-internal-types.ts
currently contains some types copied from RxDB. Two options:SupabaseReplicationOptions
. This might actually be good for readability, and we are already documenting all options in the README anyways. The only downside is that if RxDB adds a new option, it won't automatically become part of our API, but rather will need to be added explicitly. Although arguably, that might also not be the worst anyways in order to make sure any option is actually supported by us (e.g. waitForLeadership is not supported)The text was updated successfully, but these errors were encountered: