Set up initial project and files

This commit is contained in:
Young Lee
2025-02-27 14:51:38 -08:00
parent be9d1c0f61
commit 8839aac24b
18 changed files with 1754 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
// Extend mailparser types for Buffer in worker environment
declare module 'buffer-polyfill' {
global {
var Buffer: {
from(data: string, encoding?: string): {
toString(encoding?: string): string;
};
};
}
}
// Add missing atob declaration
declare module 'atob-polyfill' {
global {
function atob(data: string): string;
}
}