UNPKG

@rspack/core

Version:

The fast Rust-based web bundler with webpack-compatible API

14 lines (13 loc) 596 B
import * as liteTapable from "@rspack/lite-tapable"; import type { ContextModuleFactoryAfterResolveResult, ContextModuleFactoryBeforeResolveResult } from "./Module"; export declare class ContextModuleFactory { hooks: { beforeResolve: liteTapable.AsyncSeriesWaterfallHook<[ ContextModuleFactoryBeforeResolveResult ], ContextModuleFactoryBeforeResolveResult | void>; afterResolve: liteTapable.AsyncSeriesWaterfallHook<[ ContextModuleFactoryAfterResolveResult ], ContextModuleFactoryAfterResolveResult | void>; }; constructor(); }