import type * as webpack from 'webpack'; import type { ITerminal } from '@rushstack/terminal'; import type { SPFxDebugPageUrl } from '../SPFxDebugPageUrl'; export interface IInfoPluginOptions { terminal: ITerminal; debugPageUrl: SPFxDebugPageUrl; } /** * @public * * Webpack plugin to print the debug query parameters to the terminal. */ export declare class ServeInfoPlugin implements webpack.WebpackPluginInstance { readonly debugPageUrl: SPFxDebugPageUrl; private readonly _terminal; constructor(options: IInfoPluginOptions); /** * Print information to the developer's console. */ apply(compiler: webpack.Compiler): void; } //# sourceMappingURL=ServeInfoPlugin.d.ts.map