Skip to content

Commit

Permalink
exporting interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jun 23, 2020
1 parent 738aed0 commit 5373f97
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ interface FetchDataResponse {
appLink: string;
}

interface LogsFetchDataResponse extends FetchDataResponse {
export interface LogsFetchDataResponse extends FetchDataResponse {
stats: Record<string, Numeral>;
series: Record<string, Series>;
}

interface MetricsFetchDataResponse extends FetchDataResponse {
export interface MetricsFetchDataResponse extends FetchDataResponse {
stats: {
hosts: Numeral;
cpu: Percentage;
Expand All @@ -53,7 +53,7 @@ interface MetricsFetchDataResponse extends FetchDataResponse {
};
}

interface UptimeFetchDataResponse extends FetchDataResponse {
export interface UptimeFetchDataResponse extends FetchDataResponse {
stats: {
monitors: Numeral;
up: Numeral;
Expand All @@ -65,7 +65,7 @@ interface UptimeFetchDataResponse extends FetchDataResponse {
};
}

interface ApmFetchDataResponse extends FetchDataResponse {
export interface ApmFetchDataResponse extends FetchDataResponse {
stats: {
services: Numeral;
transactions: Numeral;
Expand Down

0 comments on commit 5373f97

Please sign in to comment.