Compare commits

..

6 Commits

Author SHA1 Message Date
78df7e07e0 1.0.44 2018-08-07 13:53:55 +02:00
a03b54e5a1 fix(ITransaction): added .description 2018-08-07 13:53:55 +02:00
d27647009f 1.0.43 2018-07-25 23:43:16 +02:00
fe2d5269c3 fix(build): update build step 2018-07-25 23:43:16 +02:00
cc19c6c215 1.0.42 2018-07-25 22:37:42 +02:00
6e8c1f7aff fix(core): update 2018-07-25 22:37:42 +02:00
3 changed files with 384 additions and 1412 deletions

1749
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "1.0.41",
"version": "1.0.44",
"private": false,
"description": "common classes for TypeScript",
"main": "dist/index.js",
@ -25,7 +25,7 @@
"homepage": "https://github.com/tsclass/tsclass#readme",
"dependencies": {},
"devDependencies": {
"@gitzone/tsrun": "^1.0.5",
"tsbuild": "^0.2.1"
"@gitzone/tsbuild": "^2.0.21",
"@gitzone/tsrun": "^1.1.9"
}
}

View File

@ -1,4 +1,7 @@
export interface ITransaction {
id?: string
accountId?: string;
description: string;
amount: number;
date: Date;
}