index.js.flow 164 B

123456
  1. // @flow
  2. import type { Stream } from '@most/types'
  3. export type Adapter<A, B> = [A => void, Stream<B>]
  4. declare export function createAdapter <A> (): Adapter<A, A>