import { a as QueryErrorEvent, o as QueryEvent, s as SlowQueryEvent } from "./types-BZGFAXPN.mjs"; //#region src/devtools-events.d.ts declare module '@forinda/kickjs-devtools-kit/bus' { interface KickDevtoolsEventRegistry { /** * Fired for every successful query — the per-statement stream the * DevTools "Database" tab renders (sql, parameters, durationMs) tagged * with the active `dialect`. Failures flow on `db:query-error`. */ 'db:query': QueryEvent & { dialect: string; }; /** Fired when a query duration exceeds `slowQueryThresholdMs`. */ 'db:slow-query': SlowQueryEvent; /** Fired when a query throws — mirrors the local `queryError` event. */ 'db:query-error': QueryErrorEvent; /** * Fired by `kickDbAdapter` after `migrationsOnBoot: 'apply'` runs * `migrateLatest()` on boot. `applied` is the list of migration * ids the runner just ran; `batch` is the journal batch number. */ 'db:migration-applied': { applied: string[]; batch: number | null; }; } } //# sourceMappingURL=devtools-events.d.ts.map //# sourceMappingURL=devtools-events.d.mts.map