Interface OfflineEditQueueStoredRecord

One persisted row paired with the key it is stored under.

interface OfflineEditQueueStoredRecord {
    key: string;
    value: unknown;
}

Properties

Properties

key: string
value: unknown