UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

3 lines (2 loc) 225 B
/** Generic utility: runs an async handler on each item sequentially. Not backport-specific; see run-sequentially.ts. */ export declare function sequentially<T, R>(items: T[], handler: (item: T) => Promise<R>): Promise<R[]>;