mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
|
|
import { Column } from "react-table";
|
||
|
|
|
||
|
|
export type IDataColumn = Column & {
|
||
|
|
title?: string;
|
||
|
|
disableHidden?: boolean;
|
||
|
|
disableSortBy?: boolean;
|
||
|
|
};
|