UNPKG

enome

Version:

A genome generation and evolution library.

7 lines (6 loc) 225 B
import { Genome, IGenomeOptions } from '../index'; export interface IReversible<Gen extends IGenomeOptions, Pheno> { genotype: Genome<Gen>; phenotype: Pheno; createGenotype(phenotype: Pheno): Genome<Gen>; }