UNPKG

timeline-monad

Version:

Micro Functional Reactive Programming (FRP) Framework with Monad structure

12 lines (11 loc) 225 B
interface timeline { type: string; timeFunction: Function; now: any; sync: Function; } declare const world: { now: timeline; }; declare const T: (timeFunction?: Function) => timeline; export { T, world };