update ci
This commit is contained in:
parent
90698230ae
commit
ac73badd76
@ -1,6 +1,6 @@
|
||||
{
|
||||
"npmci": {
|
||||
"globalNpmTools": [
|
||||
"npmGlobalTools": [
|
||||
"npmts"
|
||||
]
|
||||
}
|
||||
|
@ -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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user