next-image-loader-stub.d.ts 276 B

12345678910
  1. import { RawLoaderDefinition } from 'webpack';
  2. import { NextConfig } from 'next';
  3. interface LoaderOptions {
  4. filename: string;
  5. nextConfig: NextConfig;
  6. }
  7. declare const nextImageLoaderStub: RawLoaderDefinition<LoaderOptions>;
  8. export { nextImageLoaderStub as default };