UNPKG

shopee-client

Version:
16 lines (15 loc) 639 B
import BaseModule from "../BaseModule"; import GetPushConfigResponse from "./response/GetPushConfigResponse"; import SetPushConfigRequest from "./request/SetPushConfigRequest"; import SetPushConfigResponse from "./response/SetPushConfigResponse"; export default class PushModule extends BaseModule { /** * Use this API to get the configuration information of push service. */ getPushConfig(): Promise<GetPushConfigResponse>; /** * Use this API to set the configuration information of push service. * @param request */ setPushConfig(request: SetPushConfigRequest): Promise<SetPushConfigResponse>; }