update ci

This commit is contained in:
Philipp Kunz 2017-11-09 02:16:56 +01:00
parent 90698230ae
commit ac73badd76
2 changed files with 15 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"npmci": {
"globalNpmTools": [
"npmGlobalTools": [
"npmts"
]
}

View File

@ -1,4 +1,17 @@
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs'
export type TContactType = 'person' | 'company'
export type TContactTitle = 'Doctor' | 'Professor'
export interface IContact {
salutation?: TContactSalutation
type: TContactType
title: TContactTitle
name: string
streetName: string
houseNumber: string
postalCode: string
city: string
country: string
}