/**
 * @interface SubscribeOption
 */
export interface SubscribeOption {
    topicName: string;
    getLastValue?: boolean;
}
