Skip to content

Commit

Permalink
chore: bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crystall-bitquill committed Jan 25, 2025
1 parent 1ec01a3 commit d098018
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 150 deletions.
5 changes: 2 additions & 3 deletions common/lib/host_list_provider/host_list_provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@
limitations under the License.
*/

import { AwsClient } from "../aws_client";
import { HostInfo } from "../host_info";
import { HostRole } from "../host_role";
import { DatabaseDialect } from "../database_dialect/database_dialect";
import { ClientWrapper } from "../client_wrapper";

export interface DynamicHostListProvider extends HostListProvider {}
export type DynamicHostListProvider = HostListProvider;

export interface StaticHostListProvider extends HostListProvider {}
export type StaticHostListProvider = HostListProvider;

export interface HostListProvider {
refresh(): Promise<HostInfo[]>;
Expand Down
2 changes: 1 addition & 1 deletion common/lib/pooled_connection_provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

import { ConnectionProvider } from "./connection_provider";

export interface PooledConnectionProvider extends ConnectionProvider {}
export type PooledConnectionProvider = ConnectionProvider;
2 changes: 1 addition & 1 deletion common/lib/utils/telemetry/telemetry_gauge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
limitations under the License.
*/

export interface TelemetryGauge {}
export type TelemetryGauge = object;
Loading

0 comments on commit d098018

Please sign in to comment.