🚀 Add TypeScript code

This commit is contained in:
C-3PO 2018-11-09 00:52:03 +01:00
parent 59f6ae0f11
commit 89faa530ec
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
17 changed files with 368 additions and 8 deletions

View file

@ -0,0 +1,6 @@
export default interface IProductData {
/** Latest release number of this product according to manifest. */
manifestVersion: number;
/** Latest release number of this product available from the patch server. */
httpVersion: number;
}