Compare commits

..

2 Commits

Author SHA1 Message Date
416aa9ee1e 3.0.34 2021-10-05 14:56:38 +02:00
3375f8aa4f fix(core): update 2021-10-05 14:56:37 +02:00
3 changed files with 5 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

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