5 lines
200 B
TypeScript
5 lines
200 B
TypeScript
|
|
import { LoaderContext } from "@rspack/core";
|
||
|
|
|
||
|
|
//#region src/rspack/loaders/transform.d.ts
|
||
|
|
declare function transform(this: LoaderContext, source: string, map: any): Promise<void>;
|
||
|
|
export = transform;
|