next-flight-css-dev-loader.d.ts 346 B

12345678
  1. /**
  2. * For server-side CSS imports, we need to ignore the actual module content but
  3. * still trigger the hot-reloading diff mechanism. So here we put the content
  4. * inside a comment.
  5. */
  6. export declare function pitch(this: any): void;
  7. declare const NextServerCSSLoader: (this: any, content: string) => string;
  8. export default NextServerCSSLoader;