You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
492 B
10 lines
492 B
/// <reference types="webpack-dev-server" />
|
|
import { Configuration } from 'webpack';
|
|
import { ProjectUtils } from '../internal';
|
|
export declare const HOST: string;
|
|
export declare const DEFAULT_PORT: number;
|
|
export declare function isDebugModeEnabled(): boolean;
|
|
export declare function isInfoEnabled(): boolean;
|
|
export declare function shouldWebpackClearLogs(): boolean;
|
|
export declare function logEnvironmentInfo(projectRoot: string, tag: ProjectUtils.LogTag, config: Configuration): void;
|