7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
interface UseRafOptions {
|
|
interval?: number;
|
|
isLoop?: boolean;
|
|
}
|
|
export declare function useRaf(fn: FrameRequestCallback, options?: UseRafOptions): () => void;
|
|
export {};
|