foundry-component-library 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/types/index.ts +2 -2
- package/package.json +1 -1
package/lib/types/index.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import Image from "next/image";
|
|
2
2
|
import Link from "next/link";
|
|
3
|
-
import {
|
|
3
|
+
import { AppRouterInstance } from "next/router";
|
|
4
4
|
import { ReadonlyURLSearchParams } from "next/navigation";
|
|
5
5
|
|
|
6
6
|
export type NextImage = typeof Image;
|
|
7
7
|
export type NextLink = typeof Link;
|
|
8
|
-
export type NextRouter =
|
|
8
|
+
export type NextRouter = AppRouterInstance;
|
|
9
9
|
export type NextSearchParams = ReadonlyURLSearchParams;
|
|
10
10
|
|
|
11
11
|
export interface Variables {
|