HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/indoadvisory_new/webapp/node_modules/miniflare/dist/src/workers/email/email.worker.js
// src/workers/email/constants.ts
var RAW_EMAIL = "EmailMessage::raw";

// src/workers/email/email.worker.ts
var EmailMessage = class {
  constructor(from, to, raw) {
    this.from = from;
    this.to = to;
    this.raw = raw;
    return {
      from,
      to,
      // @ts-expect-error We need to be able to access the raw contents of an EmailMessage in entry.worker.ts
      [RAW_EMAIL]: raw
    };
  }
}, email_worker_default = {
  EmailMessage
};
export {
  email_worker_default as default
};
//# sourceMappingURL=email.worker.js.map