Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
1b36f64e4c | |||
3cabc47e51 | |||
2c6a9d9fae | |||
1ee8d36b68 | |||
d6351421b3 | |||
d8ae73007a | |||
9a63a9197b | |||
07d5665deb | |||
9a14f7e356 | |||
600ca80d33 | |||
c6a9893ce1 | |||
ea60921761 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "3.0.24",
|
"version": "3.0.30",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "3.0.24",
|
"version": "3.0.30",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "common classes for TypeScript",
|
"description": "common classes for TypeScript",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -1,6 +1,16 @@
|
|||||||
import { content } from '..';
|
import { content } from '..';
|
||||||
|
|
||||||
export interface IArticle {
|
export interface IArticle {
|
||||||
|
/**
|
||||||
|
* the main url of an article
|
||||||
|
*/
|
||||||
|
url?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the mainimage of the article
|
||||||
|
*/
|
||||||
|
featuredImageUrl?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the title of an article
|
* the title of an article
|
||||||
*/
|
*/
|
||||||
@ -16,6 +26,11 @@ export interface IArticle {
|
|||||||
*/
|
*/
|
||||||
content: string;
|
content: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* a timestamp for when the article was written
|
||||||
|
*/
|
||||||
|
timestamp: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the tags of an article
|
* the tags of an article
|
||||||
*/
|
*/
|
||||||
|
@ -3,5 +3,5 @@ import { finance } from '../';
|
|||||||
export interface ICheckingAccount {
|
export interface ICheckingAccount {
|
||||||
name: string;
|
name: string;
|
||||||
currency: finance.TCurrency;
|
currency: finance.TCurrency;
|
||||||
transactions: finance.ITransaction[];
|
transactions?: finance.ITransaction[];
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,8 @@ export interface IInvoiceItem {
|
|||||||
unitType: string;
|
unitType: string;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
vatPercentage: number;
|
vatPercentage: number;
|
||||||
|
price: number;
|
||||||
|
currency: 'EUR';
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IInvoice {
|
export interface IInvoice {
|
||||||
|
Reference in New Issue
Block a user