Compare commits

...

4 Commits

Author SHA1 Message Date
504dbdea1f 1.0.36 2018-07-22 19:50:47 +02:00
c8d2095942 fix(ICheckingAccount): update 2018-07-22 19:50:47 +02:00
96f525ef0b 1.0.35 2018-07-22 19:28:11 +02:00
7eb2ce7fe3 fix(core): import structure 2018-07-22 19:28:11 +02:00
7 changed files with 9 additions and 9 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@tsclass/tsclass", "name": "@tsclass/tsclass",
"version": "1.0.34", "version": "1.0.36",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@tsclass/tsclass", "name": "@tsclass/tsclass",
"version": "1.0.34", "version": "1.0.36",
"private": false, "private": false,
"description": "common classes for TypeScript", "description": "common classes for TypeScript",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -1,5 +1,5 @@
import { IContact } from '../index'; import { IContact } from '..';
import { IDate } from '../index'; import { IDate } from '..';
/** /**
* describes a company's lifecycle state * describes a company's lifecycle state

View File

@ -1,4 +1,4 @@
import { IAddress } from '../index'; import { IAddress } from '..';
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs'; export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';

View File

@ -1,4 +1,4 @@
import { IAuthor } from '../index'; import { IAuthor } from '..';
export interface IArticle { export interface IArticle {
/** /**

View File

@ -1,5 +1,5 @@
import { IDate } from '../index'; import { IDate } from '..';
import { IArticle } from '../index'; import { IArticle } from '..';
export interface IAuthor { export interface IAuthor {
/** /**

View File

@ -4,5 +4,5 @@ import { IPayment } from './payment';
export interface ICheckingAccount { export interface ICheckingAccount {
name: string; name: string;
currency: TCurrency; currency: TCurrency;
payment: IPayment[]; payments: IPayment[];
} }