5 lines
81 B
TypeScript
5 lines
81 B
TypeScript
import type { Server } from "bun";
|
|
|
|
declare global {
|
|
type BunServer = Server;
|
|
}
|