@akanjs/signal 0.0.142 → 0.0.144
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/package.json +1 -1
- package/src/gql.d.ts +2 -2
package/package.json
CHANGED
package/src/gql.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataList, Dayjs, Type, Upload } from "@akanjs/base";
|
|
1
|
+
import { DataList, Dayjs, type Prettify, Type, Upload } from "@akanjs/base";
|
|
2
2
|
import { FetchPolicy } from "@akanjs/common";
|
|
3
3
|
import { ConstantModel, DocumentModel, FilterType, ProtoFile, QueryOf, SortOf } from "@akanjs/constant";
|
|
4
4
|
import { type Client } from ".";
|
|
@@ -222,5 +222,5 @@ type CustomFetch<T> = Omit<T, "client" | "clone"> & {
|
|
|
222
222
|
jwt: string | null;
|
|
223
223
|
}) => CustomFetch<T>;
|
|
224
224
|
};
|
|
225
|
-
export declare const makeFetch: <F1 extends object, F2 extends object, F3 extends object, F4 extends object, F5 extends object, F6 extends object, F7 extends object, F8 extends object, F9 extends object, F10 extends object>(fetch1: F1, fetch2?: Partial<F2>, fetch3?: Partial<F3>, fetch4?: Partial<F4>, fetch5?: Partial<F5>, fetch6?: Partial<F6>, fetch7?: Partial<F7>, fetch8?: Partial<F8>, fetch9?: Partial<F9>, fetch10?: Partial<F10>) => CustomFetch<F10 & F9 & F8 & F7 & F6 & F5 & F4 & F3 & F2 & F1
|
|
225
|
+
export declare const makeFetch: <F1 extends object, F2 extends object, F3 extends object, F4 extends object, F5 extends object, F6 extends object, F7 extends object, F8 extends object, F9 extends object, F10 extends object>(fetch1: F1, fetch2?: Partial<F2>, fetch3?: Partial<F3>, fetch4?: Partial<F4>, fetch5?: Partial<F5>, fetch6?: Partial<F6>, fetch7?: Partial<F7>, fetch8?: Partial<F8>, fetch9?: Partial<F9>, fetch10?: Partial<F10>) => Prettify<CustomFetch<F10 & F9 & F8 & F7 & F6 & F5 & F4 & F3 & F2 & F1>>;
|
|
226
226
|
export {};
|