fix: Remove incorrect Bun import and add proper type declarations

main
borja (aider) 3 months ago
parent 03621af63b
commit 7d68cd5329

@ -1,7 +1,12 @@
import { Bun } from 'bun';
/// <reference types="bun-types" />
import { CommandService } from './services/command';
import { ResponseQueue } from './services/response-queue';
// Bun is available globally when running under Bun runtime
declare global {
var Bun: typeof import('bun');
}
const PORT = 3007;
type WebhookPayload = {

Loading…
Cancel
Save