clickgo 3.16.14 → 3.16.15
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/README.md +1 -1
- package/dist/clickgo.js +1 -1
- package/dist/clickgo.ts +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +9 -0
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Load the module loader first, and then load it using the module loader.
|
|
|
25
25
|
**index.html**
|
|
26
26
|
|
|
27
27
|
```html
|
|
28
|
-
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.8/dist/loader.min.js?path=index&npm={'clickgo':'3.16.
|
|
28
|
+
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.8/dist/loader.min.js?path=index&npm={'clickgo':'3.16.15'}"></script>
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
**index.js**
|
package/dist/clickgo.js
CHANGED
package/dist/clickgo.ts
CHANGED
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -926,6 +926,15 @@ export interface IGreatselectAddEvent extends ICustomEvent {
|
|
|
926
926
|
};
|
|
927
927
|
}
|
|
928
928
|
|
|
929
|
+
// --- Captcha Control ---
|
|
930
|
+
|
|
931
|
+
export interface ICaptchaResultEvent {
|
|
932
|
+
'detail': {
|
|
933
|
+
'result': number;
|
|
934
|
+
'token': string;
|
|
935
|
+
};
|
|
936
|
+
}
|
|
937
|
+
|
|
929
938
|
// --- Pdf Control ---
|
|
930
939
|
|
|
931
940
|
export interface IPdfViewEvent {
|