index.d.ts 660 B

12345678910111213141516171819202122
  1. import { webpack } from 'next/dist/compiled/webpack/webpack';
  2. export declare type ServerlessLoaderQuery = {
  3. page: string;
  4. distDir: string;
  5. absolutePagePath: string;
  6. absoluteAppPath: string;
  7. absoluteDocumentPath: string;
  8. absoluteErrorPath: string;
  9. absolute404Path: string;
  10. buildId: string;
  11. assetPrefix: string;
  12. generateEtags: string;
  13. poweredByHeader: string;
  14. canonicalBase: string;
  15. basePath: string;
  16. runtimeConfig: string;
  17. previewProps: string;
  18. loadedEnvFiles: string;
  19. i18n: string;
  20. };
  21. declare const nextServerlessLoader: webpack.LoaderDefinitionFunction;
  22. export default nextServerlessLoader;