ssn-auto/src/interfaces/IProductData.ts
2018-11-09 00:52:36 +01:00

6 lines
242 B
TypeScript

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;
}