UNPKG
@onesy/algorithms
Version:
latest (1.0.0)
1.0.0
Algorithms
github.com/onesy-org/onesy-algorithms
onesy-org/onesy-algorithms
@onesy/algorithms
/
fibonacciRecursive.d.ts
5 lines
(4 loc)
•
174 B
TypeScript
View Raw
1
2
3
4
5
export
interface
IFibonacciRecursiveOptions
{
cache
?:
boolean
; }
export
default
function
fibonacciRecursive
(
value
:
number
,
options
?:
IFibonacciRecursiveOptions
):
number
;