mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 20:39:50 -04:00
12 lines
417 B
TypeScript
12 lines
417 B
TypeScript
import { devServerOptionsType } from './types';
|
|
/**
|
|
*
|
|
* Merges CLI options and devServer options from config file
|
|
*
|
|
* @param {Object} cliOptions - devServer CLI args
|
|
* @param {Object} devServerOptions - devServer config options
|
|
*
|
|
* @returns {Object} merged options object
|
|
*/
|
|
export default function mergeOptions(cliOptions: devServerOptionsType, devServerOptions: devServerOptionsType): devServerOptionsType;
|