elcrm 0.8.924 → 0.8.925
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/Api/Api.d.ts +1 -0
- package/dist/Store/Store.d.ts +1 -1
- package/package.json +1 -1
package/dist/Api/Api.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export declare function url(): {
|
|
|
3
3
|
files: string;
|
|
4
4
|
};
|
|
5
5
|
export declare function audio(link: string): string;
|
|
6
|
+
export declare function image(link: string): string;
|
|
6
7
|
export declare function fetch(link: string, data?: {}, ssid?: string): Promise<unknown>;
|
|
7
8
|
export declare function formData(link: string, data?: {}, ssid?: string): Promise<any>;
|
|
8
9
|
export declare function modules(link: string, data?: {}, ssid?: string): Promise<unknown>;
|
package/dist/Store/Store.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare function setSSID(t: string): void;
|
|
|
9
9
|
export declare function getSSID(): string;
|
|
10
10
|
export declare function setAUTH(t: string): void;
|
|
11
11
|
export declare function getAUTH(): string;
|
|
12
|
-
export declare function setPORT(j:
|
|
12
|
+
export declare function setPORT(j: any): void;
|
|
13
13
|
export declare function getPORT(): any;
|
|
14
14
|
export declare function usePage(): any[];
|
|
15
15
|
export declare function setPage(o: string, reload?: boolean): void;
|