Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
55d5e89bb8 | |||
5838948117 | |||
e5e3562eef | |||
d081dc4b98 | |||
ee9efae18d | |||
df39fcbe37 |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.5",
|
||||
"version": "4.0.8",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.5",
|
||||
"version": "4.0.8",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"type-fest": "^2.13.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.5",
|
||||
"version": "4.0.8",
|
||||
"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.5',
|
||||
version: '4.0.8',
|
||||
description: 'common classes for TypeScript'
|
||||
}
|
||||
|
@ -6,9 +6,9 @@ export interface ILetter {
|
||||
from: business.IContact;
|
||||
to: business.IContact;
|
||||
logoUrl: string;
|
||||
accentColor: string;
|
||||
subject: string;
|
||||
text: string[];
|
||||
accentColor?: string;
|
||||
invoiceData?: finance.IInvoice;
|
||||
contractData?: {
|
||||
id: string;
|
||||
|
@ -1,9 +1,10 @@
|
||||
import { content } from '../index.js';
|
||||
|
||||
/**
|
||||
* a general content article
|
||||
* can be news, can be a productdescription,
|
||||
* can be anything that has text with a title
|
||||
* a general content article:
|
||||
* * can be news
|
||||
* * can be a productdescription,
|
||||
* * can be anything that has text with a title
|
||||
*/
|
||||
export interface IArticle<T = any> {
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* a constract event describes any kind of sale
|
||||
* a contract event describes any kind of sale
|
||||
*/
|
||||
export interface IEvent_Contract {
|
||||
contractId: string;
|
||||
|
Reference in New Issue
Block a user