renamed Number to number(lowercase)

Signed-off-by: mufaddal motiwala <mufaddalmm.52@gmail.com>
This commit is contained in:
mufaddal motiwala
2021-12-20 13:21:41 +05:30
parent 78a8e9aaaa
commit 72a80e3373
3 changed files with 3 additions and 3 deletions
@@ -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,
@@ -25,7 +25,7 @@ type Props = {
guid: string;
name: string;
permalink: string;
duration: Number;
duration: number;
};
export const DashboardSnapshot = ({