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 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;