diff --git a/src/components/item-selector/item-selector.component.tsx b/src/components/item-selector/item-selector.component.tsx index 0a0bd8d..37de986 100644 --- a/src/components/item-selector/item-selector.component.tsx +++ b/src/components/item-selector/item-selector.component.tsx @@ -4,6 +4,21 @@ import { Panel } from "../panel/panel.component"; import { ArrowLeft, ArrowRight } from "@carbon/react/icons"; import { Button } from "@carbon/react"; +type SideNavProps = object; + +type Indicator = { + id: string; + label: string; + type?: string; + attributes?: Array; +}; + +type IndicatorItem = { + id: string; + label: string; + type?: string; +}; + export interface ItemSelectorProps { availableParameters: any[]; selectedParameters: any[]; diff --git a/src/declarations.d.ts b/src/declarations.d.ts index 1f9c556..b6a75f1 100644 --- a/src/declarations.d.ts +++ b/src/declarations.d.ts @@ -2,18 +2,3 @@ declare module "@carbon/react"; declare module "*.css"; declare module "*.scss"; declare module "*.png"; - -declare type SideNavProps = object; - -declare type Indicator = { - id: string; - label: string; - type?: string; - attributes?: Array; -}; - -declare type IndicatorItem = { - id: string; - label: string; - type?: string; -};