Skip to content

Commit

Permalink
Set up acceleration status type
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Liang <[email protected]>
  • Loading branch information
RyanL1997 committed Mar 8, 2024
1 parent b5d8ecf commit 7a23224
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/types/data_connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

import { EuiComboBoxOptionOption } from '@elastic/eui';

export type AccelerationStatus = 'ACTIVE' | 'INACTIVE';

export interface PermissionsConfigurationProps {
roles: Role[];
selectedRoles: Role[];
Expand All @@ -20,7 +22,7 @@ export interface TableColumn {

export interface Acceleration {
name: string;
status: 'ACTIVE' | 'INACTIVE';
status: AccelerationStatus;
type: string;
database: string;
table: string;
Expand Down

0 comments on commit 7a23224

Please sign in to comment.