Neah/node_modules/next/dist/build/babel/loader/transform.d.ts
2025-04-24 17:19:14 +02:00

7 lines
357 B
TypeScript

import type { Span } from '../../../trace';
import type { NextJsLoaderContext } from './types';
export default function transform(this: NextJsLoaderContext, source: string, inputSourceMap: object | null | undefined, loaderOptions: any, filename: string, target: string, parentSpan: Span): Promise<{
code: string;
map: object | null | undefined;
}>;