Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
63d1e0f65a | |||
f296ce24aa | |||
b38b691458 | |||
64d8a0b0f8 | |||
594c2cfe40 | |||
ac94cb1630 | |||
ddea031bbe | |||
6132076aed | |||
a5bd50850e | |||
8df838935c | |||
504dbdea1f | |||
c8d2095942 |
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [
|
"npmGlobalTools": [],
|
||||||
"npmts"
|
|
||||||
],
|
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
}
|
}
|
||||||
}
|
}
|
1572
package-lock.json
generated
1572
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "1.0.35",
|
"version": "1.0.41",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "common classes for TypeScript",
|
"description": "common classes for TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tsrun test/test.ts",
|
"test": "tsrun test/test.ts",
|
||||||
"build": "npmts --notest"
|
"build": "tsbuild"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -25,6 +25,7 @@
|
|||||||
"homepage": "https://github.com/tsclass/tsclass#readme",
|
"homepage": "https://github.com/tsclass/tsclass#readme",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsrun": "^1.0.5"
|
"@gitzone/tsrun": "^1.0.5",
|
||||||
|
"tsbuild": "^0.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { TCurrency } from './currency';
|
import { TCurrency } from './currency';
|
||||||
import { IPayment } from './payment';
|
import { ITransaction } from './transaction';
|
||||||
|
|
||||||
export interface ICheckingAccount {
|
export interface ICheckingAccount {
|
||||||
name: string;
|
name: string;
|
||||||
currency: TCurrency;
|
currency: TCurrency;
|
||||||
payment: IPayment[];
|
transactions: ITransaction[];
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export interface IPayment {
|
export interface ITransaction {
|
||||||
amount: number;
|
amount: number;
|
||||||
date: Date;
|
date: Date;
|
||||||
}
|
}
|
@ -8,7 +8,7 @@ export * from './finance/checkingaccount';
|
|||||||
export * from './finance/currency';
|
export * from './finance/currency';
|
||||||
export * from './finance/expense';
|
export * from './finance/expense';
|
||||||
export * from './finance/invoice';
|
export * from './finance/invoice';
|
||||||
export * from './finance/payment';
|
export * from './finance/transaction';
|
||||||
|
|
||||||
// Cloud
|
// Cloud
|
||||||
export * from './cloud/dns';
|
export * from './cloud/dns';
|
||||||
|
Reference in New Issue
Block a user