ts-playground
    Preparing search index...

    SyncHead represents the last-known sync positions between two OVC instances. Valid SyncHead values are only produced by push(), pull(), fullClone(), and shallowClone(). The opaque brand prevents construction of arbitrary SyncHead literals.

    interface SyncHead {
        "[_syncHeadBrand]": undefined;
        local: string | null;
        remote: string | null;
    }
    Index

    Properties

    "[_syncHeadBrand]": undefined
    local: string | null
    remote: string | null