Interface iRefreshDoc<T>

interface iRefreshDoc<T> {
    _docId: string;
    _id?: string;
    collectionId: T;
    refreshRequestTime: T;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

collectionId: T

The collection ID

refreshRequestTime: T

The time the refresh was requested (Unix timestamp in milliseconds)