Update database queries

This commit is contained in:
C-3PO 2018-11-09 01:09:45 +01:00
parent 89faa530ec
commit e9a58152d7
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
5 changed files with 28 additions and 56 deletions

View file

@ -0,0 +1,10 @@
import { Product } from "ssn";
export default interface IDatabaseRow {
/** 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;
}