UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

5 lines (4 loc) 148 B
import { Pair } from './list'; type Stream = null | Pair<any, () => Stream>; export declare function stream(...elements: any[]): Stream; export {};