Edit gitignore file
This commit is contained in:
8
frontend/style/node_modules/next/dist/client/image-component.d.ts
generated
vendored
8
frontend/style/node_modules/next/dist/client/image-component.d.ts
generated
vendored
@@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import type { OnLoadingComplete, PlaceholderValue } from 'next/dist/shared/lib/get-img-props';
|
||||
import type { ImageLoaderProps } from 'next/dist/shared/lib/image-config';
|
||||
import type { OnLoadingComplete, PlaceholderValue } from '../shared/lib/get-img-props';
|
||||
import type { ImageLoaderProps } from '../shared/lib/image-config';
|
||||
export type { ImageLoaderProps };
|
||||
export type ImageLoader = (p: ImageLoaderProps) => string;
|
||||
/**
|
||||
@@ -9,12 +9,12 @@ export type ImageLoader = (p: ImageLoaderProps) => string;
|
||||
* Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)
|
||||
*/
|
||||
export declare const Image: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "height" | "width" | "loading" | "ref" | "alt" | "src" | "srcSet"> & {
|
||||
src: string | import("next/dist/shared/lib/get-img-props").StaticImport;
|
||||
src: string | import("../shared/lib/get-img-props").StaticImport;
|
||||
alt: string;
|
||||
width?: number | `${number}` | undefined;
|
||||
height?: number | `${number}` | undefined;
|
||||
fill?: boolean | undefined;
|
||||
loader?: import("next/dist/shared/lib/get-img-props").ImageLoader | undefined;
|
||||
loader?: import("../shared/lib/get-img-props").ImageLoader | undefined;
|
||||
quality?: number | `${number}` | undefined;
|
||||
priority?: boolean | undefined;
|
||||
loading?: "eager" | "lazy" | undefined;
|
||||
|
||||
Reference in New Issue
Block a user