File tree 1 file changed +7
-7
lines changed
npm/webpack-dev-server/src
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,20 +14,20 @@ export interface DevServerOptions {
14
14
devServerEvents : EventEmitter
15
15
}
16
16
17
- export interface StartDevServer {
18
- /* this is the Cypress options object */
19
- options : DevServerOptions
20
- /* support passing a path to the user's webpack config */
21
- webpackConfig ?: Record < string , any >
22
- }
23
-
24
17
type DoneCallback = ( ) => unknown
25
18
26
19
export interface ResolvedDevServerConfig {
27
20
port : number
28
21
close : ( done ?: DoneCallback ) => void
29
22
}
30
23
24
+ export interface StartDevServer {
25
+ /* this is the Cypress options object */
26
+ options : DevServerOptions
27
+ /* support passing a path to the user's webpack config */
28
+ webpackConfig ?: Record < string , any >
29
+ }
30
+
31
31
export async function startDevServer ( startDevServerArgs : StartDevServer ) {
32
32
const webpackDevServer = await createDevServer ( startDevServerArgs )
33
33
You can’t perform that action at this time.
0 commit comments