Entry for a single synced field, tracking its source and update state.

interface SyncEntry {
    active: boolean;
    source: string;
    updated?: Date;
}

Properties

active: boolean
source: string
updated?: Date