Schema for the result of an all documents operation.

interface AllDocsResult {
    rows: DocsResultRow[];
    total_rows: number;
    update_seq?: string;
}

Properties

List of doc results.

total_rows: number

Number of total rows.

update_seq?: string

Current update sequence for the database.

Generated using TypeDoc