mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 20:39:50 -04:00
11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
import { devServerOptionsType } from './types';
|
|
/**
|
|
*
|
|
* Creates a devServer config from CLI args
|
|
*
|
|
* @param {Object} args - devServer args
|
|
*
|
|
* @returns {Object} valid devServer options object
|
|
*/
|
|
export default function createConfig(args: any): devServerOptionsType;
|