start-server.d.ts 273 B

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