elcrm 0.9.3 → 0.9.5

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.
@@ -2,3 +2,5 @@ export declare function Server(v?: any): any;
2
2
  export declare function Api(v?: any): any;
3
3
  export declare function Client(v?: any): any;
4
4
  export declare function Host(v?: any): any;
5
+ export declare function Import(v?: any): any;
6
+ export declare function ImportFn(p: any): any;
@@ -1,4 +1,4 @@
1
- import { Api, Server, Client, Host } from './Version';
1
+ import { Api, Server, Client, Host, Import } from './Version';
2
2
  declare const _default: {
3
3
  version: {
4
4
  Api: typeof Api;
@@ -6,5 +6,6 @@ declare const _default: {
6
6
  Client: typeof Client;
7
7
  };
8
8
  Host: typeof Host;
9
+ Import: typeof Import;
9
10
  };
10
11
  export default _default;
@@ -2,9 +2,10 @@ type TPageSections = {
2
2
  title?: string;
3
3
  children?: any;
4
4
  button?: any;
5
+ imp: any;
5
6
  page: string;
6
7
  tabs?: any;
7
8
  modules: string;
8
9
  };
9
- declare const PageSection: ({ title, children, button, page, tabs, modules, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
10
+ declare const PageSection: ({ title, children, imp, button, page, tabs, modules, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
10
11
  export default PageSection;