UNPKG

@tinymce/beehive-flow

Version:

A CLI tool implementing the beehive flow git branching process

7 lines 383 B
import * as O from 'fp-ts/Option'; declare type Option<A> = O.Option<A>; export declare const eachAsync: <A>(o: Option<A>, f: (a: A) => Promise<void>) => Promise<void>; export declare const mapAsync: <A, B>(o: Option<A>, f: (a: A) => Promise<B>) => Promise<Option<B>>; export declare const somes: <A>(options: Option<A>[]) => A[]; export {}; //# sourceMappingURL=OptionUtils.d.ts.map