interface IndexDescription {
    fields: IndexFieldDescription[];
    includes: undefined | string[];
    name: string;
    primary: boolean;
    tableName: undefined | string;
    type: undefined | string;
    unique: boolean;
}

Properties

includes: undefined | string[]
name: string
primary: boolean
tableName: undefined | string
type: undefined | string
unique: boolean