UNPKG
@cromarmot/algo
Version:
latest (2.1.0)
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
Algorithms library with controllable time complexity.
github.com/CroMarmot/algo
CroMarmot/algo
@cromarmot/algo
/
dist
/
declare.d.ts
6 lines
(5 loc)
•
221 B
TypeScript
View Raw
1
2
3
4
5
6
declare
namespace
CromarmotAlgoLib
{
type
Complexity
=
"Best"
|
"Constant"
|
"LogN"
|
"N"
|
"NLogN"
|
"N2"
|
"N2LogN"
|
"N3"
|
"N4"
|
"NN"
|
"Random"
;
type
Funcs
=
string
;
type
Fn
=
(
...
arg0
:
any
[]
) =>
any
; }