UNPKG

@callstack/repack-dev-server

Version:

A bundler-agnostic development server for React Native applications as part of @callstack/repack.

13 lines (12 loc) 410 B
import type { ServerOptions as HttpsServerOptions } from 'node:https'; import type { Server } from '../types.js'; export interface NormalizedOptions { host: string; port: number; https: HttpsServerOptions | undefined; hot: boolean; url: string; disableRequestLogging: boolean; rootDir: string; } export declare function normalizeOptions(options: Server.Options): NormalizedOptions;