chore: apply Prettier formatting to entire codebase

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-20 22:01:53 +02:00
parent 1d8cffb119
commit 3ed9d2ee22
18 changed files with 1008 additions and 319 deletions
+7 -4
View File
@@ -1,8 +1,11 @@
// Extend mailparser types for Buffer in worker environment
declare module 'buffer-polyfill' {
declare module "buffer-polyfill" {
global {
var Buffer: {
from(data: string, encoding?: string): {
from(
data: string,
encoding?: string,
): {
toString(encoding?: string): string;
};
};
@@ -10,8 +13,8 @@ declare module 'buffer-polyfill' {
}
// Add missing atob declaration
declare module 'atob-polyfill' {
declare module "atob-polyfill" {
global {
function atob(data: string): string;
}
}
}