Skip to content

Commit

Permalink
devex: fix timestamp type
Browse files Browse the repository at this point in the history
  • Loading branch information
Looskie committed Nov 16, 2023
1 parent 8feaadb commit cb4d54d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rest/types/fleet.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {Id} from '.';
import type {Id, Timestamp} from '.';

/**
* Fleet scheduling state (schedulable/unschedulable)
Expand Down Expand Up @@ -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
*/
Expand Down

0 comments on commit cb4d54d

Please sign in to comment.