NeahNew/node_modules/next/dist/build/webpack/loaders/next-flight-action-entry-loader.d.ts
2025-05-03 14:17:46 +02:00

14 lines
448 B
TypeScript

import type { webpack } from 'next/dist/compiled/webpack/webpack';
export type NextFlightActionEntryLoaderOptions = {
actions: string;
};
export type FlightActionEntryLoaderActions = [
path: string,
actions: {
id: string;
exportedName: string;
}[]
][];
declare function nextFlightActionEntryLoader(this: webpack.LoaderContext<NextFlightActionEntryLoaderOptions>): string;
export default nextFlightActionEntryLoader;