bunext/dist/functions/server/server-params-gen.d.ts

7 lines
156 B
TypeScript

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