dynamic-mat-table
Version:
dynamic-mat-table is an Angular component for presenting large and complex data with a lightning fast performance (at least 10x faster) and excellent level of control over the presentation.
17 lines (16 loc) • 618 B
TypeScript
import { AbstractFilter, FilterOperation } from './abstract-filter';
import { TableIntl } from '../../../../international/table-Intl';
export declare class NumberFilter extends AbstractFilter<number> {
languagePack: TableIntl;
private static sql;
private static operationList;
constructor(languagePack: TableIntl);
private _selectedIndex;
get selectedIndex(): number;
set selectedIndex(value: number);
get selectedValue(): FilterOperation;
getOperations(): FilterOperation[];
toString(dynamicVariable: any): string;
toPrint(): string;
toSql(): string;
}