An interface for a consumer of push-based notifications delivered by an Observable. interface Observer<T> { closed?: boolean; next: (value: T) => void; ...
確定! 回上一頁