/** * Utils to help to work with Promise objects. */ export declare class PromiseUtils { /** * Runs given callback that returns promise for each item in the given collection in order. * Operations executed after each other, right after previous promise being resolved. */ static runInSequence(collection: T[], callback: (item: T) => Promise): Promise; }