@ciwergrp/nuxid 1.2.0 → 1.2.1
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/module.json
CHANGED
|
@@ -20,7 +20,7 @@ export interface CursorFetchOptions<TRequest extends NitroFetchRequest = NitroFe
|
|
|
20
20
|
itemKey?: string;
|
|
21
21
|
cursorParam?: string;
|
|
22
22
|
}
|
|
23
|
-
export declare function useCursorFetch<T extends Record<string,
|
|
23
|
+
export declare function useCursorFetch<T extends Record<string, any> = any, TResponse extends APIResponseCursor<T> = APIResponseCursor<T>, TRequest extends NitroFetchRequest = NitroFetchRequest>(url: TRequest, options?: CursorFetchOptions<TRequest>): {
|
|
24
24
|
data: import("vue").Ref<TResponse | undefined, TResponse | undefined>;
|
|
25
25
|
loading: Readonly<import("vue").Ref<boolean, boolean>>;
|
|
26
26
|
error: Readonly<import("vue").Ref<Error | null, Error | null>>;
|