elcrm 0.7.6 → 0.7.8

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 CHANGED
@@ -5,6 +5,7 @@ export declare function url(): {
5
5
  export declare function audio(link: string): string;
6
6
  export declare function fetch(link: string, data?: {}, ssid?: string | boolean): Promise<unknown>;
7
7
  export declare function modules(link: string, data?: {}, ssid?: string | boolean): Promise<unknown>;
8
+ export declare function use(link: string, body: {} | undefined, ssid: string): any[];
8
9
  export declare function db(type: string, query: string, data?: {}): Promise<any>;
9
10
  export declare function remoute(url: string, link: string, data?: {}): Promise<any>;
10
11
  export declare function telegram(type: string, data?: {}): Promise<any>;
@@ -1,4 +1,4 @@
1
- import { audio, url, fetch, remoute, telegram, modules } from './Api';
1
+ import { audio, url, fetch, remoute, telegram, modules, use } from './Api';
2
2
 
3
3
  declare const _default: {
4
4
  audio: typeof audio;
@@ -7,5 +7,6 @@ declare const _default: {
7
7
  remoute: typeof remoute;
8
8
  url: typeof url;
9
9
  telegram: typeof telegram;
10
+ use: typeof use;
10
11
  };
11
12
  export default _default;
@@ -45,4 +45,5 @@ export declare function Icon({ type, name, params }: Params): import("react/jsx-
45
45
  * @param {any} params - params.
46
46
  */
47
47
  export declare function Open(type: string, name: string, params: any): void;
48
+ export declare function Close(name?: any): void;
48
49
  export {};
@@ -2,7 +2,7 @@ import { default as List } from './List';
2
2
  import { default as Scroll } from './Scroll';
3
3
  import { default as Form } from './Form';
4
4
  import { default as Center } from './Center';
5
- import { Main, Add, Icon, Open, Shake } from './Modal';
5
+ import { Main, Add, Icon, Open, Shake, Close } from './Modal';
6
6
 
7
7
  declare const _default: {
8
8
  List: typeof List;
@@ -14,5 +14,6 @@ declare const _default: {
14
14
  Shake: typeof Shake;
15
15
  Form: typeof Form;
16
16
  Center: typeof Center;
17
+ Close: typeof Close;
17
18
  };
18
19
  export default _default;