Interface PreviewDocumentRecord

A document with a unique identifier and arbitrary field values.

DocumentRecord

interface PreviewDocumentRecord {
    _id: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

_id: string

The unique identifier for the document.

DocumentRecord