@lark-project/js-sdk 2.0.1-alpha.18 → 2.0.1-alpha.19
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/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -574,7 +574,7 @@ declare abstract class Context extends BaseModel {
|
|
|
574
574
|
* 用于获取插件内自定义传入的上下文数据 context
|
|
575
575
|
* 例如:在 Modal.open 时传入的 context,可以通过 getCustomContext 来获取
|
|
576
576
|
*/
|
|
577
|
-
abstract getCustomContext
|
|
577
|
+
abstract getCustomContext: <Context>() => Promise<Context>;
|
|
578
578
|
}
|
|
579
579
|
|
|
580
580
|
/**
|