UNPKG

@radcliffetech/symbolos-core

Version:

Core symbolic simulation and execution engine for Symbolos

14 lines (13 loc) 528 B
import type { Constellation, ConwayCell, Functor } from '@core/types'; interface TransformationInput { width: number; height: number; seedPattern: 'glider' | 'blinker' | 'beacon' | 'toad'; } export declare const InitializeConwayCells: Functor<TransformationInput, Constellation<ConwayCell>>; interface TransformationInputStepConway { constellation: Constellation<ConwayCell>; step: number; } export declare const StepConwayCells: Functor<TransformationInputStepConway, Constellation<ConwayCell>>; export {};