UNPKG

tycho-solver

Version:

Evolutionary computation and optimization library

7 lines 158 B
/** * Generic step interface for pipeline processing */ export interface Step<T> { apply(input: T): T | Promise<T>; } //# sourceMappingURL=Step.d.ts.map