UNPKG

sodiumjs

Version:

A Functional Reactive Programming (FRP) library for JavaScript

8 lines (7 loc) 241 B
import { Lazy } from "./Lazy"; import { Cell } from "./Cell"; import { Stream } from "./Stream"; export declare class LazyCell<A> extends Cell<A> { constructor(lazyInitValue: Lazy<A>, str?: Stream<A>); sampleNoTrans__(): A; }