Schema for information about the indexes in a database.

interface IndexesInformation {
    indexes: IndexInformation[];
    total_rows: number;
}

Properties

Properties

indexes: IndexInformation[]

Indexes.

total_rows: number

Number of total rows.

Generated using TypeDoc