@choiceform/os-client-core 3.4.32 → 3.4.33
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/changelog.md +6 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +13 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1529,6 +1529,19 @@ declare const enum DATA_TRANSFER_NAME {
|
|
|
1529
1529
|
*/
|
|
1530
1530
|
INVALID = 'invalid_url',
|
|
1531
1531
|
}
|
|
1532
|
+
/**
|
|
1533
|
+
* 数据转移类型结果
|
|
1534
|
+
*/
|
|
1535
|
+
interface IDataTransferResult {
|
|
1536
|
+
/**
|
|
1537
|
+
* 转移类型
|
|
1538
|
+
*/
|
|
1539
|
+
type: SAMPLE_METHOD;
|
|
1540
|
+
/**
|
|
1541
|
+
* 是否完成了数据转移
|
|
1542
|
+
*/
|
|
1543
|
+
done: boolean;
|
|
1544
|
+
}
|
|
1532
1545
|
|
|
1533
1546
|
/**
|
|
1534
1547
|
* 进入答题页面的模式
|