Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
chore: remove wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Dec 11, 2018
1 parent 88cab21 commit 8a1c955
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/metrics/src/MetricsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Environment, EnvironmentUtil } from 'pandora-env';
import { MetricsMessengerClient } from './util/MessengerUtil';
import { Counter, FastCompass, Gauge, Histogram, Meter, Proxiable, Timer } from './client';
import { AbstractIndicator } from './indicator/AbstractIndicator';
import { type } from 'os';

export class MetricsClient extends AbstractIndicator {

Expand Down Expand Up @@ -196,7 +195,7 @@ export class MetricsClient extends AbstractIndicator {
return new MetricsRegistry();
}

private createMetricProxy(type) {
private createMetricProxy(type: string) {
switch (type) {
case 'COUNTER':
return new Counter();
Expand Down

0 comments on commit 8a1c955

Please sign in to comment.