UNPKG
enome
Version:
latest (4.5.0)
4.5.0
4.4.5
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.0
4.2.0
4.1.1
4.1.0
4.0.0
2.3.0
2.2.0
2.1.1
2.0.0
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A genome generation and evolution library.
github.com/fiberwire/enome
fiberwire/enome
enome
/
lib
/
mocks.d.ts
10 lines
(9 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Genome
,
IGenomeOptions
}
from
'../src/index'
;
export
interface
IMock
{
genome
:
Genome
<
IGenomeOptions
>;
genomes
:
Array
<
Genome
<
IGenomeOptions
>>;
mutateChance
:
number
;
weights
:
number
[];
genomeOptions
:
IGenomeOptions
; }
export
declare
function
mocks
(
):
IMock
;