11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import { KeysOf } from '../../utils/types/utility-types';
|
|
|
|
export interface TableColumnConfig<T extends object> {
|
|
readonly label: string;
|
|
readonly sortByKey?: KeysOf<T>;
|
|
readonly class?: string;
|
|
readonly leftIcon?: string;
|
|
readonly rightIcon?: string;
|
|
readonly rightIconTooltip?: string;
|
|
}
|