UNPKG

@uigstudio/uig-nextjs-helper

Version:

``` npm install @uig/uig-nextjs-helper ``` or ``` yarn add -D @uig/uig-nextjs-helper ```

5 lines (4 loc) 184 B
/// <reference types="react" /> declare type Opt<R> = R | undefined; export declare function useCurrentRef<T>(value?: Opt<T>): import("react").MutableRefObject<Opt<T>>; export {};