mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
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;
|