interface PushListener {
    onBindTokenSuccess: ((token: string) => void);
    onError: ((error: ChatError) => void);
}

Properties

onBindTokenSuccess: ((token: string) => void)
onError: ((error: ChatError) => void)