@lark-project/js-sdk 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/CHANGELOG.md +3 -0
- package/dist/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -750,6 +750,10 @@ declare abstract class Navigation extends BaseModel {
|
|
|
750
750
|
* @internal
|
|
751
751
|
*/
|
|
752
752
|
private static load;
|
|
753
|
+
/**
|
|
754
|
+
* 读取当前完整的页面地址
|
|
755
|
+
*/
|
|
756
|
+
abstract getHref(): Promise<string>;
|
|
753
757
|
/**
|
|
754
758
|
* 打开新标签页加载指定的资源
|
|
755
759
|
* @param url 需要载入的 URL,可以是 HTML 页面或者图片文件等浏览器支持的文件格式
|