diff --git a/chronograf/ui/src/shared/components/index_views/IndexListTypes.ts b/chronograf/ui/src/shared/components/index_views/IndexListTypes.ts deleted file mode 100644 index 20b768c5ea..0000000000 --- a/chronograf/ui/src/shared/components/index_views/IndexListTypes.ts +++ /dev/null @@ -1,19 +0,0 @@ -import {Alignment} from 'src/clockface' - -export interface IndexListColumn { - key: string - title: string - size: number - showOnHover: boolean - align: Alignment -} - -export interface IndexListRowColumn { - key: string - contents: any -} - -export interface IndexListRow { - columns: IndexListRowColumn[] - disabled: boolean -}