mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
16 lines
273 B
TypeScript
16 lines
273 B
TypeScript
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
|
|
}
|