7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import type { ServeOptions } from "bun";
|
|
type Params = {
|
|
dev?: boolean;
|
|
};
|
|
export default function (params?: Params): Promise<ServeOptions>;
|
|
export {};
|