8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
|
import { LoaderContext } from 'webpack';
|
||
|
|
||
|
declare function transform(this: LoaderContext<{
|
||
|
unpluginName: string;
|
||
|
}>, source: string, map: any): Promise<void>;
|
||
|
|
||
|
export { transform as default };
|