interface Sync {
    init: ((owner: Owner) => Effect<void, never, never>);
    sync: ((syncData: SyncData) => Effect<SyncResult, SyncStateIsNotSynced, Config>);
}

Properties

Properties

init: ((owner: Owner) => Effect<void, never, never>)
sync: ((syncData: SyncData) => Effect<SyncResult, SyncStateIsNotSynced, Config>)