Skip to content

Commit

Permalink
export the tab interface
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Liang <jiallian@amazon.com>
  • Loading branch information
RyanL1997 committed Feb 26, 2024
1 parent d0a5282 commit 79a7076
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 9 additions & 0 deletions common/types/data_connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ export interface PermissionsConfigurationProps {
hasSecurityAccess: boolean;
}

export interface AssociatedObject {
id: string;
name: string;
database: string;
type: string;
createdByIntegration: string;
accelerations: string;
}

export type Role = EuiComboBoxOptionOption;

export type DatasourceType = 'S3GLUE' | 'PROMETHEUS';
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,9 @@ import {
EuiButton,
EuiSpacer,
} from '@elastic/eui';
import { AssociatedObject } from 'common/types/data_connections';
import { AccelerationsRecommendationCallout } from './accelerations_recommendation_callout';

interface AssociatedObject {
id: string;
name: string;
database: string;
type: string;
createdByIntegration: string;
accelerations: string;
}

interface AssociatedObjectsTabProps {
associatedObjects: AssociatedObject[];
}
Expand Down

0 comments on commit 79a7076

Please sign in to comment.