mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 16:43:25 +01:00
12 lines
220 B
TypeScript
12 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;
|