Check for new manifest version

This commit is contained in:
C-3PO 2018-11-09 02:23:01 +01:00
parent e9a58152d7
commit 334b52f4c6
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
4 changed files with 44 additions and 12 deletions

View file

@ -1,10 +1,7 @@
import { Product } from "ssn";
import IProductData from "./IProductData";
export default interface IDatabaseRow {
export default interface IDatabaseRow extends IProductData {
/** Name of the product. */
product: Product;
/** Latest release number of this product according to the manifest. */
manifest: number;
/** Latest release number of this product available from the patch server. */
http: number;
}