export type LatestStart = { canceled: boolean; done: () => void; }; /** * A class to help make async code non concurrent. * Only the latest async functions get the go ahead the other ones get cancelled. */ export default class Latest { private listeners; private running; constructor(); start(): Promise; } //# sourceMappingURL=Latest.d.ts.map