UNPKG

extension-develop

Version:
13 lines (12 loc) 449 B
import { type Compiler } from '@rspack/core'; import { PluginInterface } from '../webpack-types'; import { type DevOptions } from '../../develop-lib/config-types'; export declare class StaticAssetsPlugin { static readonly name: string; readonly manifestPath: string; readonly mode: DevOptions['mode']; constructor(options: PluginInterface & { mode: DevOptions['mode']; }); apply(compiler: Compiler): Promise<void>; }