zhizhi/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.d.ts

22 lines
605 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 取消订阅专属sdk事件 请求参数定义
* @apiName biz.realm.unsubscribe
*/
export interface IBizRealmUnsubscribeParams {
channel: string;
}
/**
* 取消订阅专属sdk事件 返回结果定义
* @apiName biz.realm.unsubscribe
*/
export interface IBizRealmUnsubscribeResult {
}
/**
* 取消订阅专属sdk事件
* @apiName biz.realm.unsubscribe
* @supportVersion ios: 4.7.18 android: 4.7.18
* @author Android :笔歌; IOS 怒龙
*/
export declare function unsubscribe$(params: IBizRealmUnsubscribeParams): Promise<IBizRealmUnsubscribeResult>;
export default unsubscribe$;