6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { LoaderContext } from '@rspack/core';
|
|
|
|
declare function load(this: LoaderContext, source: string, map: any): Promise<void>;
|
|
|
|
export { load as default };
|