UNPKG

webpack-userscript

Version:
14 lines (13 loc) 443 B
import { UserscriptPluginInstance } from '../types'; import { Feature } from './feature'; export interface ProxyScriptFeatureOptions { filename?: string; baseURL?: string; } export interface ProxyScriptOptions { proxyScript?: ProxyScriptFeatureOptions; } export declare class ProcessProxyScript extends Feature<ProxyScriptOptions> { readonly name = "ProcessProxyScript"; apply({ hooks }: UserscriptPluginInstance): void; }