2025-09-05 14:59:21 +08:00

8 lines
187 B
TypeScript

import { LoaderContext } from 'webpack';
declare function load(this: LoaderContext<{
unpluginName: string;
}>, source: string, map: any): Promise<void>;
export { load as default };