mirror of
https://github.com/Readarr/Readarr
synced 2026-01-08 16:43:34 +01:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import React from 'react';
|
|
|
|
type PropertyFunction<T> = () => T;
|
|
|
|
interface Column {
|
|
name: string;
|
|
label: string | PropertyFunction<string> | React.ReactNode;
|
|
columnLabel?: string;
|
|
isSortable?: boolean;
|
|
isVisible: boolean;
|
|
isModifiable?: boolean;
|
|
}
|
|
|
|
export default Column;
|