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