@gonsin/gview 2.0.102 → 2.0.104

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.
@@ -0,0 +1,21 @@
1
+ interface MessageOptions {
2
+ duration?: number;
3
+ maxCount?: number;
4
+ }
5
+ declare class MessageManagerConstructor {
6
+ private messageQueue;
7
+ private displayedMessages;
8
+ private options;
9
+ constructor(options?: MessageOptions);
10
+ private showMessage;
11
+ private processQueue;
12
+ private addToQueue;
13
+ success(content: string): void;
14
+ error(content: string): void;
15
+ info(content: string): void;
16
+ warning(content: string): void;
17
+ loading(content: string): void;
18
+ question(content: string): void;
19
+ }
20
+ declare const MessageManager: MessageManagerConstructor;
21
+ export { MessageManager };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gonsin/gview",
3
- "version": "2.0.102",
3
+ "version": "2.0.104",
4
4
  "main": "dist/index.mjs",
5
5
  "typings": "dist/types/index.d.ts",
6
6
  "files": [