@jswork/antd-components 1.0.95 → 1.0.96

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/dist/main.d.mts CHANGED
@@ -69,9 +69,9 @@ declare const transferLabel: ({ item }: {
69
69
 
70
70
  declare global {
71
71
  interface NxStatic {
72
- alert: typeof alert;
73
- confirm: typeof confirm;
74
- prompt: typeof prompt;
72
+ alert: (inMessage: string, inTitle?: String) => any;
73
+ confirm: (inMessage: string, inTitle?: String) => any;
74
+ prompt: (inMessage: string, inOptions?: InputProps) => any;
75
75
  }
76
76
  }
77
77
  declare const alert: (inMessage: string, inTitle?: String) => {
package/dist/main.d.ts CHANGED
@@ -69,9 +69,9 @@ declare const transferLabel: ({ item }: {
69
69
 
70
70
  declare global {
71
71
  interface NxStatic {
72
- alert: typeof alert;
73
- confirm: typeof confirm;
74
- prompt: typeof prompt;
72
+ alert: (inMessage: string, inTitle?: String) => any;
73
+ confirm: (inMessage: string, inTitle?: String) => any;
74
+ prompt: (inMessage: string, inOptions?: InputProps) => any;
75
75
  }
76
76
  }
77
77
  declare const alert: (inMessage: string, inTitle?: String) => {