8 lines
187 B
TypeScript
Raw Permalink Normal View History

2025-03-19 15:35:09 +08:00
import { LoaderContext } from 'webpack';
declare function load(this: LoaderContext<{
unpluginName: string;
}>, source: string, map: any): Promise<void>;
export { load as default };