Interface TableTextIndexDescriptor

Describes a text (lexical) index.

interface TableTextIndexDescriptor {
    column: TableIndexColumn<SomeRow>;
    definition: TableTextIndexOptions;
    indexType: "text";
}

Properties

indexType: "text"