Core APIflowEvery本页总览Every A timer that executes a callback at specified intervals. Factory Functions every(interval: number, callback: EveryCallback): EveryTimer Examples import {every} from '@wangyaoshen/locus';every(1, () => { console.log('Executed every second');}); Related Links Loop