Compare commits

..

6 Commits

Author SHA1 Message Date
7d148166c3 3.0.36 2021-11-07 03:17:52 +01:00
cd380c9791 fix(core): update 2021-11-07 03:17:51 +01:00
2a3236c2a6 3.0.35 2021-11-07 03:16:41 +01:00
cb556f71da fix(core): update 2021-11-07 03:16:41 +01:00
416aa9ee1e 3.0.34 2021-10-05 14:56:38 +02:00
3375f8aa4f fix(core): update 2021-10-05 14:56:37 +02:00
4 changed files with 9 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@tsclass/tsclass", "name": "@tsclass/tsclass",
"version": "3.0.33", "version": "3.0.36",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

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

View File

@ -1,5 +1,9 @@
export interface IContainer { export interface IContainer {
registryUrl: string; registryUrl: string;
tag: string; tag: string;
/**
* version is usually derived from labels
*/
version: string; version: string;
labels: string[];
} }

View File

@ -1,6 +1,6 @@
import { content } from '..'; import { content } from '..';
export interface IArticle { export interface IArticle<T = any> {
/** /**
* the main url of an article * the main url of an article
*/ */
@ -11,6 +11,8 @@ export interface IArticle {
*/ */
featuredImageUrl?: string; featuredImageUrl?: string;
referenceObject?: T;
/** /**
* the title of an article * the title of an article
*/ */