mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
f436d730fe
Co-authored-by: Qstick <qstick@gmail.com>
13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
import React from 'react';
|
|
|
|
interface Column {
|
|
name: string;
|
|
label: string | React.ReactNode;
|
|
columnLabel?: string;
|
|
isSortable?: boolean;
|
|
isVisible: boolean;
|
|
isModifiable?: boolean;
|
|
}
|
|
|
|
export default Column;
|