export function addNotificationRemovedCallback()

in src/index.tsx [496:503]


export function addNotificationRemovedCallback(callback: PushCallback) {
  _onNotificationRemovedListener = pushManagerEmitter.addListener(
    'AliyunPush_onNotificationRemoved',
    (event) => {
      callback(event);
    }
  );
}