mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
export type BotHeartbeatData = {
|
|
shard: number;
|
|
state: 'ok' | 'degraded' | 'failed';
|
|
lastHeartbeat?: number; // Date.now()
|
|
};
|