1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00

fix: add interface

This commit is contained in:
Fredrik Oseberg 2021-08-09 14:38:39 +02:00
parent 5446038ed7
commit 0ffa01502f

View File

@ -13,6 +13,11 @@ export interface IProject {
createdAt: Date;
}
interface IProjectHealthUpdate {
id: string;
health: number;
}
interface IProjectInsert {
id: string;
name: string;