UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

12 lines (11 loc) 275 B
type LoopFn = (elapse: number, n: number) => void | number; type LoopOptions = { duration?: number; auto?: boolean; delay?: number; }; export declare const loop: (fn: LoopFn, _options?: LoopOptions) => { stop: () => void; start: () => void; }; export {};