UNPKG
jeri
Version:
latest (1.1.0)
1.1.0
1.0.0
0.3.6
JavaScript Extended-Range Image viewer
jeri.io
jeri
/
build_npm
/
utils
/
cached-function.d.ts
3 lines
(2 loc)
•
147 B
TypeScript
View Raw
1
2
3
export
declare
type
FunctionType
<I, O> =
(
input
: I
) =>
O;
export
default
function
cachedFunction<I, O>(
f
:
FunctionType
<I, O>):
FunctionType
<I, O>;