UNPKG

baconjs

Version:

A small functional reactive programming lib for JavaScript.

7 lines (6 loc) 189 B
import { EventStream } from "./observable"; /** Creates an EventStream that immediately ends. @typeparam V Type of stream elements */ export default function never<V>(): EventStream<V>;