12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
// Invoice types from WHMCS
|
|
import type { InvoiceSchema, InvoiceItemSchema, InvoiceListSchema } from "../validation";
|
|
|
|
export type Invoice = InvoiceSchema;
|
|
export type InvoiceItem = InvoiceItemSchema;
|
|
export type InvoiceList = InvoiceListSchema;
|
|
|
|
export interface InvoiceSsoLink {
|
|
url: string;
|
|
expiresAt: string;
|
|
}
|