UNPKG

@lesnoypudge/utils-react

Version:

lesnoypudge's utils-react

6 lines (5 loc) 176 B
/** * Initializes and retains a value across renders, calling the factory * function only once. */ export declare const useConst: <_Value>(factory: () => _Value) => _Value;