export function addNotificationOpenedCallback()

in src/index.tsx [487:494]


export function addNotificationOpenedCallback(callback: PushCallback) {
  _onNotificationOpenedListener = pushManagerEmitter.addListener(
    'AliyunPush_onNotificationOpened',
    (event) => {
      callback(event);
    }
  );
}