silgi 0.4.6 → 0.4.7
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/dist/_chunks/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AvailableRouterMethod } from 'nitropack';
|
|
2
2
|
import type { FetchError } from 'ofetch';
|
|
3
|
-
import type { SilgiRouterTypes } from 'silgi';
|
|
3
|
+
import type { SilgiRouterTypes } from 'silgi/types';
|
|
4
4
|
import { type AsyncData, type FetchResult, type UseFetchOptions } from 'nuxt/app';
|
|
5
5
|
export type KeysOf<T> = Array<T extends T ? keyof T extends string ? keyof T : never : never>;
|
|
6
6
|
export type PickFrom<T, K extends Array<string>> = T extends Array<any> ? T : T extends Record<string, any> ? keyof T extends K[number] ? T : K[number] extends never ? T : Pick<T, K[number]> : T;
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED