mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-16 17:54:06 +00:00
Finalize Typescript restructure
This commit is contained in:
@@ -30,10 +30,12 @@ export interface InvoiceListResponse {
|
||||
|
||||
export interface SendInvoicePayload {
|
||||
id: number
|
||||
subject?: string
|
||||
body?: string
|
||||
from?: string
|
||||
to?: string
|
||||
subject?: string | null
|
||||
body?: string | null
|
||||
from?: string | null
|
||||
to?: string | null
|
||||
cc?: string | null
|
||||
bcc?: string | null
|
||||
}
|
||||
|
||||
export interface InvoiceStatusPayload {
|
||||
@@ -43,6 +45,12 @@ export interface InvoiceStatusPayload {
|
||||
|
||||
export interface SendPreviewParams {
|
||||
id: number
|
||||
from?: string | null
|
||||
to?: string | null
|
||||
cc?: string | null
|
||||
bcc?: string | null
|
||||
subject?: string | null
|
||||
body?: string | null
|
||||
}
|
||||
|
||||
export interface InvoiceTemplate {
|
||||
|
||||
Reference in New Issue
Block a user