UNPKG

@radcliffetech/symbolos-core

Version:

Core symbolic simulation and execution engine for Symbolos

6 lines (5 loc) 278 B
import type { Functor, Transformation } from '@core/types'; export declare function applyFunctor<Input, Output>(functor: Functor<Input, Output>, input: Input, inputId: string, context?: Record<string, any>): Promise<{ output: Output; transformation: Transformation; }>;