refactor: move to bun

This commit is contained in:
2024-12-11 18:59:02 +01:00
parent dcc4e26235
commit b94bf56e77
79 changed files with 2038 additions and 20013 deletions

6
src/types.ts Normal file
View File

@@ -0,0 +1,6 @@
export type Language = 'en' | 'de'
export interface EmailTemplate {
html: (data: any) => string
text: (data: any) => string
}