Files
2022-12-27 12:05:56 +01:00

8 lines
273 B
TypeScript

import type { NextServerOptions, NextServer } from '../next';
interface StartServerOptions extends NextServerOptions {
allowRetry?: boolean;
keepAliveTimeout?: number;
}
export declare function startServer(opts: StartServerOptions): Promise<NextServer>;
export {};