import { interval } from "rxjs"; import { throttleTime } from "rxjs/operators"; const source$ = interval(500).pipe(throttleTime(2000)); ...
確定! 回上一頁