@akanjs/client 0.9.58 → 0.9.59

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/client",
3
- "version": "0.9.58",
3
+ "version": "0.9.59",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/types.d.ts CHANGED
@@ -103,6 +103,6 @@ export interface ReactFont {
103
103
  export interface RootLayoutProps {
104
104
  children: ReactNode;
105
105
  params: Promise<{
106
- lang: "en" | "ko";
106
+ lang: "en" | "ko" | (string & {});
107
107
  }>;
108
108
  }