Interface TableRegularIndexDescriptor

Describes a normal index on a scalar, map, list, etc.

interface TableRegularIndexDescriptor {
    column: TableIndexColumn<SomeRow>;
    definition: TableIndexOptions;
    indexType: "regular";
}

Properties

definition: TableIndexOptions
indexType: "regular"