Finalize Typescript restructure

This commit is contained in:
Darko Gjorgjijoski
2026-04-06 17:59:15 +02:00
parent cab785172e
commit 74b4b2df4e
209 changed files with 12419 additions and 1745 deletions

View File

@@ -1,10 +1,7 @@
import { client } from '../client'
import { API } from '../endpoints'
export interface MailDriver {
name: string
value: string
}
export type MailDriver = string
export interface SmtpConfig {
mail_driver: string
@@ -46,6 +43,8 @@ export interface MailConfigResponse {
export interface TestMailPayload {
to: string
subject: string
message: string
}
export const mailService = {