api-core-lib 10.10.10 → 11.2.2
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/index.d.mts +0 -3
- package/dist/index.d.ts +0 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -552,9 +552,6 @@ declare const processResponse: <T>(responseOrError: AxiosResponse<any> | ApiErro
|
|
|
552
552
|
|
|
553
553
|
declare function useApi<T>(axiosInstance: AxiosInstance, config: UseApiConfig<T>): UseApiReturn<T>;
|
|
554
554
|
|
|
555
|
-
/**
|
|
556
|
-
* هوك متقدم يقوم ببناء مجموعة من الإجراءات القابلة للتنفيذ من إعدادات موديول API.
|
|
557
|
-
*/
|
|
558
555
|
declare function useApiModule<TModule extends ApiModuleConfig>(axiosInstance: AxiosInstance, moduleConfig: TModule, options?: UseApiModuleOptions): ModuleActions<TModule>;
|
|
559
556
|
|
|
560
557
|
type ApiResourceStatus = 'idle' | 'loading' | 'success' | 'error';
|
package/dist/index.d.ts
CHANGED
|
@@ -552,9 +552,6 @@ declare const processResponse: <T>(responseOrError: AxiosResponse<any> | ApiErro
|
|
|
552
552
|
|
|
553
553
|
declare function useApi<T>(axiosInstance: AxiosInstance, config: UseApiConfig<T>): UseApiReturn<T>;
|
|
554
554
|
|
|
555
|
-
/**
|
|
556
|
-
* هوك متقدم يقوم ببناء مجموعة من الإجراءات القابلة للتنفيذ من إعدادات موديول API.
|
|
557
|
-
*/
|
|
558
555
|
declare function useApiModule<TModule extends ApiModuleConfig>(axiosInstance: AxiosInstance, moduleConfig: TModule, options?: UseApiModuleOptions): ModuleActions<TModule>;
|
|
559
556
|
|
|
560
557
|
type ApiResourceStatus = 'idle' | 'loading' | 'success' | 'error';
|