Interface ITable

interface ITable {
    count: number;
    name: string;
    operator?: IScalarOperator;
}

Properties

Properties

count: number

Count of rows count to compare with

name: string

Name of the data table

operator?: IScalarOperator

Comparison operator

Default

==