export function addNotificationCallback()

in src/index.tsx [460:467]


export function addNotificationCallback(callback: PushCallback) {
  _onNotificationListener = pushManagerEmitter.addListener(
    'AliyunPush_onNotification',
    (event) => {
      callback(event);
    }
  );
}