@m4l/components 9.1.97 → 9.1.98
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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const mock_areasIds: {
|
|
2
|
+
areId1ForTesting: string;
|
|
3
|
+
areId2ForTesting: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const mock_cookieIds: {
|
|
6
|
+
cookie1ForTesting: string;
|
|
7
|
+
cookie2ForTesting: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const endPoints: {
|
|
10
|
+
areas: string;
|
|
11
|
+
cookies: string;
|
|
12
|
+
cookies_admin: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Función para ser usada como una implementación de mock
|
|
16
|
+
* de la función networkOperation del hook useNetwork.
|
|
17
|
+
* @param pars Parámetros de la llamada a la api
|
|
18
|
+
*/
|
|
19
|
+
export declare const fnNetworkImplementation: (pars: any) => Promise<{
|
|
20
|
+
data: {};
|
|
21
|
+
} | undefined>;
|