6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
type Params = {
|
|
dev?: boolean;
|
|
};
|
|
export default function startServer(params?: Params): Promise<import("bun").Server>;
|
|
export {};
|