fix all type errors

This commit is contained in:
Thomas Ruoff
2021-02-15 23:29:25 +01:00
parent 85a7b54a13
commit 3386fb3928
14 changed files with 123 additions and 132 deletions

15
interfaces/IDocProps.ts Normal file
View File

@@ -0,0 +1,15 @@
export interface IDocProps {
template: string
subject: string
body: string
address: string
date?: string
opening?: string
closing?: string
yourRef?: string
yourMail?: string
myRef?: string
customer?: string
invoice?: string
specialMail?: string
}