/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { ID, NumericID } from '../../value-objects/id'; import { Percentage } from '../../value-objects/percentage'; export interface KitInstallationStatus { id: NumericID; userID: ID; percentage: Percentage; isDone: boolean; logs: Array; error: string | null; lastUpdateDate: Date; }