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,5 +1,5 @@
import Router from 'next/dist/shared/lib/router/router';
import type { NextRouter } from 'next/dist/shared/lib/router/router';
import Router from '../shared/lib/router/router';
import type { NextRouter } from '../shared/lib/router/router';
type SingletonRouterBase = {
router: Router | null;
readyCallbacks: Array<() => any>;
@@ -12,7 +12,7 @@ declare const routerEvents: readonly ["routeChangeStart", "beforeHistoryChange",
export type RouterEvent = (typeof routerEvents)[number];
declare const _default: SingletonRouter;
export default _default;
export { default as withRouter } from 'next/dist/client/with-router';
export { default as withRouter } from './with-router';
/**
* This hook gives access the [router object](https://nextjs.org/docs/pages/api-reference/functions/use-router#router-object)
* inside the [Pages Router](https://nextjs.org/docs/pages/building-your-application).