react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
10 lines (9 loc) • 455 B
TypeScript
import * as React from 'react';
import { OwnProps, TableColumn } from './TableComponent.types';
export declare const EMPTY_SELECT_FILTER: {
value: string;
text: string;
};
export declare const getFilterValue: (column: TableColumn, value: any) => any;
export declare const getFilterForColumn: (column: TableColumn, style: any, onChange: Function, value: any, t: Function) => any;
export declare const TableComponent: React.ComponentType<OwnProps>;