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