guava-ui 0.1.1 → 0.1.2
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/lib/guava-ui.es.js +5 -4
- package/lib/guava-ui.es.js.map +1 -1
- package/lib/guava-ui.umd.js +2 -2
- package/lib/guava-ui.umd.js.map +1 -1
- package/lib/types/index.d.ts +3 -0
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ declare type __VLS_Props = {
|
|
|
19
19
|
size?: string;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
|
+
declare const alert_2: (msg: unknown, type?: MessageType) => Promise<void>;
|
|
23
|
+
export { alert_2 as alert }
|
|
24
|
+
|
|
22
25
|
export declare const decrypt: (word: string) => any;
|
|
23
26
|
|
|
24
27
|
export declare const eachTree: (treeDatas: any[], callBack: Fn, parentNode?: {}) => void;
|