6 lines
242 B
TypeScript
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;
|
|
}
|