elcrm 0.8.23 → 0.8.24

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.
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  type View = {
3
3
  load: string;
4
- list: string;
4
+ list: object;
5
5
  item: any;
6
6
  head: JSX.Element;
7
7
  };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  type Pagination = {
3
3
  load: string;
4
- list: string;
4
+ list: object;
5
5
  item: JSX.Element;
6
6
  };
7
7
  export declare function Pagination({ load, list, item }: Pagination): JSX.Element;
@@ -1,2 +1,13 @@
1
1
  /// <reference types="react" />
2
- export declare function Scrolling(props: any): JSX.Element;
2
+ interface Scrolling {
3
+ list: object;
4
+ load: any;
5
+ item: any;
6
+ className?: string;
7
+ }
8
+ /**
9
+ * Введите текст уведомления
10
+ * @param {object} list
11
+ */
12
+ export declare function Scrolling({ list, load, className, ...props }: Scrolling): JSX.Element;
13
+ export {};