ngrx/store的select方法的问题

  @Effect()
  shipperSignUpEffect$ = this.actions$
    .ofType<signUpActions.ShipperSignUp>(
      signUpActions.ShipperSignUpActionTypes.ShipperSignUpAction
    ) // 返回值为**shipperSignUp***的Action类型(ofType本质上是个rxjs库的filter)
    .pipe(
      map(action => action.payload), // ShipperSignUpAction的payload: shipper obj --> 这里返回 ****** shipper object ******
      withLatestFrom(this.store.select(fromAuth.getSignUpToken)),
      exhaustMap(([account, token]) =>
        this.shipperService
          .shipperSignup(account.shipper, token)
          .pipe(
            map(rsp => new signUpActions.ShipperSignUpSuccess()),
            catchError(error =>
              of(new signUpActions.ShipperSignUpFailed(error))
            )
          )
      )
    );
        ```
        请问this.store.select(fromAuth.getSignUpToken)的select是什么意思?里面的参数是reducer还是字符串呢?谢谢!

这是观察者模式(https://baike.baidu.com/item/观察者模式/5881786?fr=aladdin)在ngrx上的应用,使用select()方法获取可观察对象,然后订阅观察,在状态变化之后做出反应。
select实现的源代码:https://github.com/ngrx/core/blob/master/src/operator/select.ts