Compare commits

...

4 Commits

Author SHA1 Message Date
055b85c7c4 4.0.40 2023-05-06 21:21:02 +02:00
5730d87b0c fix(core): update 2023-05-06 21:21:01 +02:00
610fda5f36 4.0.39 2023-05-06 17:23:46 +02:00
e206405d70 fix(core): update 2023-05-06 17:23:46 +02:00
3 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.38",
"version": "4.0.40",
"private": false,
"description": "common classes for TypeScript",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.38',
version: '4.0.40',
description: 'common classes for TypeScript'
}

View File

@ -1 +1,13 @@
export interface IProduct {}
import { ICompany } from "../business/company.js";
export interface IProduct {
name: string;
description: string;
os: 'web-based',
category: 'Business Application',
offers: any[];
landingPage: string;
appLink: string;
logoLink: string;
publisher?: ICompany;
}