UNPKG

ali-mns-sdk

Version:

The nodejs SDK for aliyun mns service

14 lines (13 loc) 527 B
import { Account } from './Account'; import { IMNSTopic } from './Interfaces'; import { MNS } from './MNS'; import { Region } from './Region'; export declare class MNSTopic extends MNS implements IMNSTopic { constructor(account: Account, region?: string | Region); listTopicP(prefix?: string, pageSize?: number, pageMarker?: string): any; createTopicP(name: string, options?: any): any; deleteTopicP(name: string): any; private makeTopicURL; private _patternTopic; private _urlTopic; }