8 lines
273 B
TypeScript
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 {};
|