From cb4d54daba9fe3b6d700f3583745a33b97bd266c Mon Sep 17 00:00:00 2001 From: Cody Miller Date: Thu, 16 Nov 2023 16:57:46 +0900 Subject: [PATCH] devex: fix timestamp type --- src/rest/types/fleet.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rest/types/fleet.ts b/src/rest/types/fleet.ts index ff5e73e7..a762b73c 100644 --- a/src/rest/types/fleet.ts +++ b/src/rest/types/fleet.ts @@ -1,4 +1,4 @@ -import type {Id} from '.'; +import type {Id, Timestamp} from '.'; /** * Fleet scheduling state (schedulable/unschedulable) @@ -53,7 +53,7 @@ export interface Node { /** * The last time the node sent a heartbeat (Used to determine if the node is alive) */ - last_heartbeat: string; + last_heartbeat: Timestamp; /** * Node metadata */