Edit gitignore file

This commit is contained in:
ParkSuMin
2025-02-24 20:17:54 +03:00
parent 9b16274400
commit d7869378b8
349 changed files with 686 additions and 25860 deletions

View File

@@ -1,6 +1,6 @@
import type { ImageLoaderProps } from 'next/dist/shared/lib/image-config';
import type { ImageProps, ImageLoader, StaticImageData } from 'next/dist/shared/lib/get-img-props';
import { Image } from 'next/dist/client/image-component';
import type { ImageLoaderProps } from './image-config';
import type { ImageProps, ImageLoader, StaticImageData } from './get-img-props';
import { Image } from '../../client/image-component';
/**
* For more advanced use cases, you can call `getImageProps()`
* to get the props that would be passed to the underlying `<img>` element,
@@ -9,7 +9,7 @@ import { Image } from 'next/dist/client/image-component';
* Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)
*/
export declare function getImageProps(imgProps: ImageProps): {
props: import("next/dist/shared/lib/get-img-props").ImgProps;
props: import("./get-img-props").ImgProps;
};
export default Image;
export type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData };