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