renamed Number to number(lowercase)
Signed-off-by: mufaddal motiwala <mufaddalmm.52@gmail.com>
This commit is contained in:
@@ -38,6 +38,6 @@ export type NewRelicDashboardApi = {
|
||||
getDashboardEntity(guid: string): Promise<DashboardEntitySummary | undefined>;
|
||||
getDashboardSnapshot(
|
||||
guid: string,
|
||||
duration: Number,
|
||||
duration: number,
|
||||
): Promise<DashboardSnapshotSummary | undefined>;
|
||||
};
|
||||
|
||||
@@ -83,7 +83,7 @@ export class NewRelicDashboardClient implements NewRelicDashboardApi {
|
||||
|
||||
async getDashboardSnapshot(
|
||||
guid: string,
|
||||
duration: Number,
|
||||
duration: number,
|
||||
): Promise<DashboardSnapshotSummary | undefined> {
|
||||
const DashboardSnapshotValue = await this.callApi<DashboardSnapshot>(
|
||||
getDashboardSnapshotQuery,
|
||||
|
||||
+1
-1
@@ -25,7 +25,7 @@ type Props = {
|
||||
guid: string;
|
||||
name: string;
|
||||
permalink: string;
|
||||
duration: Number;
|
||||
duration: number;
|
||||
};
|
||||
|
||||
export const DashboardSnapshot = ({
|
||||
|
||||
Reference in New Issue
Block a user