UNPKG

@alenaksu/neatjs

Version:

NEAT (Neuroevolution of Augmenting Topologies) implementation in JavaScript

8 lines (7 loc) 175 B
import { NodeType } from '../types'; export declare class NodeGene { id: string; type: NodeType; constructor(type: NodeType, id?: string); copy(): NodeGene; }