Compare commits

...

8 Commits

Author SHA1 Message Date
38e5bd39d9 4.0.20 2022-09-14 08:43:55 +02:00
f978af4b4f fix(core): update 2022-09-14 08:43:54 +02:00
6f35eed240 4.0.19 2022-08-17 17:28:04 +02:00
636177b119 fix(core): update 2022-08-17 17:28:03 +02:00
05bd86a0ce 4.0.18 2022-08-17 15:46:43 +02:00
d4cc9f7843 fix(core): update 2022-08-17 15:46:42 +02:00
45e8460474 4.0.17 2022-06-16 12:25:27 +02:00
15bbb6ee22 fix(core): update 2022-06-16 12:25:26 +02:00
9 changed files with 4804 additions and 1185 deletions

5960
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.16",
"version": "4.0.20",
"private": false,
"description": "common classes for TypeScript",
"main": "dist_ts/index.js",
@ -26,13 +26,13 @@
},
"homepage": "https://github.com/tsclass/tsclass#readme",
"dependencies": {
"type-fest": "^2.13.1"
"type-fest": "^2.18.0"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.16',
version: '4.0.20',
description: 'common classes for TypeScript'
}

View File

@ -34,6 +34,7 @@ export interface IContact {
// =========
vatId?: string;
sepaConnection?: {
institution?: string;
iban: string;
bic: string;
};

View File

@ -1,2 +1,3 @@
export * from './mongodescriptor.js';
export * from './objectaction.js';
export * from './objectaction.js';
export * from './wrappeddata.js'

View File

@ -0,0 +1,3 @@
export interface IWrappedData<T> {
data: T;
}

View File

@ -25,7 +25,10 @@ import * as network from './network/index.js';
// SaaS
import * as saas from './saas/index.js';
export { business, container, code, database, finance, content, general, network, saas };
// Website
import * as website from './website/index.js';
export { business, container, code, database, finance, content, general, network, saas, website };
import type * as typeFest from 'type-fest';

1
ts/website/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './menuitem.js';

4
ts/website/menuitem.ts Normal file
View File

@ -0,0 +1,4 @@
export interface IMenuItem {
name: string;
action: <T = any>() => void | Promise<T>;
}