Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
594c2cfe40 | |||
ac94cb1630 | |||
ddea031bbe | |||
6132076aed | |||
a5bd50850e | |||
8df838935c | |||
504dbdea1f | |||
c8d2095942 | |||
96f525ef0b | |||
7eb2ce7fe3 | |||
d67dc9ab44 | |||
c193fd4c59 |
@ -117,8 +117,9 @@ pages:
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci command npm install -g npmpage
|
||||
- npmci command npmpage
|
||||
- npmci command npm install -g typedoc typescript
|
||||
- npmci npm install
|
||||
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "1.0.33",
|
||||
"version": "1.0.39",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "1.0.33",
|
||||
"version": "1.0.39",
|
||||
"private": false,
|
||||
"description": "common classes for TypeScript",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { IContact } from '../index';
|
||||
import { IDate } from '../index';
|
||||
import { IContact } from '..';
|
||||
import { IDate } from '..';
|
||||
|
||||
/**
|
||||
* describes a company's lifecycle state
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { IAddress } from '../index';
|
||||
import { IAddress } from '..';
|
||||
|
||||
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { IAuthor } from '../index';
|
||||
import { IAuthor } from '..';
|
||||
|
||||
export interface IArticle {
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { IDate } from '../index';
|
||||
import { IArticle } from '../index';
|
||||
import { IDate } from '..';
|
||||
import { IArticle } from '..';
|
||||
|
||||
export interface IAuthor {
|
||||
/**
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { TCurrency } from "./currency";
|
||||
import { IPayment } from "./payment";
|
||||
import { TCurrency } from './currency';
|
||||
import { ITransaction } from './transaction';
|
||||
|
||||
export interface ICheckingAccount {
|
||||
name: string;
|
||||
currency: TCurrency;
|
||||
payment: IPayment[];
|
||||
}
|
||||
payments: ITransaction[];
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
export type TCurrency = 'eur' | 'usd' | 'sek'
|
||||
export type TCurrency = 'eur' | 'usd' | 'sek';
|
||||
|
@ -7,7 +7,7 @@ export interface IExpenseItem {
|
||||
}
|
||||
|
||||
export interface IExpense {
|
||||
voucherFile?: any
|
||||
voucherFile?: any;
|
||||
expenseItems: IExpenseItem[];
|
||||
contactRef: string;
|
||||
accountRef: string;
|
||||
|
@ -1,4 +1,4 @@
|
||||
export interface IPayment {
|
||||
export interface ITransaction {
|
||||
amount: number;
|
||||
date: Date;
|
||||
}
|
@ -8,7 +8,7 @@ export * from './finance/checkingaccount';
|
||||
export * from './finance/currency';
|
||||
export * from './finance/expense';
|
||||
export * from './finance/invoice';
|
||||
export * from './finance/payment'
|
||||
export * from './finance/transaction';
|
||||
|
||||
// Cloud
|
||||
export * from './cloud/dns';
|
||||
|
Reference in New Issue
Block a user