UNPKG

@wener/ui

Version:

8 lines (7 loc) 248 B
/** * create only once * * @see https://reactjs.org/docs/hooks-faq.html#how-to-create-expensive-objects-lazily * @see https://github.com/Andarist/use-constant/blob/master/src/index.ts */ export declare function useConstant<T>(fn: () => T): T;