1
私は最近、私がいることを理解し、次の関数宣言活字体のシンタックスの説明、オプションのパラメータ
subscribe(observerOrNext?: PartialObserver<T> | ((value: T) => void), error?: (error: any) => void, complete?:() => void): Subscription;
に出くわしました「?」オプションであることを意味しますが、残りの部分は何ですか、特に :PartialObserver<T> | ((value: T) => void)
部分ですか?
[パイプ(|)がtypescriptでどういう意味ですか?](http://stackoverflow.com/questions/38628115/what-does-the-pipe-mean-in-typescript) –