UNPKG
@wener/ui
Version:
latest (1.0.0-alpha.18)
1.0.0-alpha.18
1.0.0-alpha.17
1.0.0-alpha.16
1.0.0-alpha.15
1.0.0-alpha.13
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.8
1.0.0-alpha.7
1.0.0-alpha.6
@wener/ui
/
lib
/
src
/
hooks
/
useConstant.d.ts
8 lines
(7 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * 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
;