Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
055b85c7c4 | |||
5730d87b0c | |||
610fda5f36 | |||
e206405d70 |
@ -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",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@tsclass/tsclass',
|
||||
version: '4.0.38',
|
||||
version: '4.0.40',
|
||||
description: 'common classes for TypeScript'
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
Reference in New Issue
Block a user