File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed
containers/AppWithClusters Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,8 @@ import React from 'react';
33import type { Store } from '@reduxjs/toolkit' ;
44import type { History } from 'history' ;
55
6- import type {
7- GetLogsLink ,
8- GetMonitoringClusterLink ,
9- GetMonitoringLink ,
10- } from '../../utils/monitoring' ;
6+ import type { GetLogsLink } from '../../utils/logs' ;
7+ import type { GetMonitoringClusterLink , GetMonitoringLink } from '../../utils/monitoring' ;
118import {
129 getMonitoringClusterLink as getMonitoringClusterLinkDefault ,
1310 getMonitoringLink as getMonitoringLinkDefault ,
Original file line number Diff line number Diff line change 1+ export interface GetLogsLinkProps {
2+ dbName : string ;
3+ logging : string ;
4+ }
5+
6+ export type GetLogsLink = ( props : GetLogsLinkProps ) => string ;
Original file line number Diff line number Diff line change @@ -99,10 +99,3 @@ export function parseMonitoringData(monitoring: string): ParsedMonitoringData |
9999
100100 return undefined ;
101101}
102-
103- interface GetLogsLinkProps {
104- dbName : string ;
105- logging : string ;
106- }
107-
108- export type GetLogsLink = ( props : GetLogsLinkProps ) => string ;
You can’t perform that action at this time.
0 commit comments