declare global {
  namespace Bun {
    // Define the type of your new property
    interface MyNamespace {
      blabla: () => void; // Example function
    }
  }
}

// Export an empty object to make this file a module
export {}; 