elcrm 0.9.61 → 0.9.63

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,7 +2,13 @@ interface Notice {
2
2
  type: string;
3
3
  text: string;
4
4
  }
5
+ export type TCustomItem = {
6
+ key: Number;
7
+ text: string;
8
+ hide?: boolean;
9
+ };
5
10
  export declare function Init(): any;
11
+ export declare function Custom(e: any): void;
6
12
  export declare function Send(e: Notice): void;
7
13
  /**
8
14
  * Введите текст уведомления
@@ -1,9 +1,10 @@
1
- import { Send, Error, Remark, Success, Copy } from './Init';
1
+ import { Send, Error, Remark, Success, Copy, Custom } from './Init';
2
2
  declare const _default: {
3
3
  Send: typeof Send;
4
4
  Error: typeof Error;
5
5
  Remark: typeof Remark;
6
6
  Success: typeof Success;
7
7
  Copy: typeof Copy;
8
+ Custom: typeof Custom;
8
9
  };
9
10
  export default _default;