fix type def

This commit is contained in:
Alan Hamlett
2024-08-15 21:32:35 +02:00
parent 8ce0cd658e
commit 655c225bcb

View File

@@ -28,9 +28,9 @@ export interface Datum {
} }
export interface SendHeartbeat { export interface SendHeartbeat {
branch: string | null; branch?: string | null;
hostname: string; hostname: string;
project: string | null; project?: string | null;
url: string; url: string;
} }