UNPKG

webpack-serve-certificate-creator

Version:
10 lines (9 loc) 487 B
import type { ServerCertificateCreatorOptions } from './types.js'; import type { Compiler, WebpackPluginInstance } from 'webpack'; export declare const PLUGIN_NAME = "webpack-serve-certificate-creator"; export declare class WebpackServeCertificateCreator implements WebpackPluginInstance { private readonly options; constructor(options?: Partial<ServerCertificateCreatorOptions>); get defaultOptions(): ServerCertificateCreatorOptions; apply(compiler: Compiler): void; }