ydb-sdk
Version:
Node.js bindings for working with YDB API over gRPC
12 lines • 471 B
TypeScript
/**
* Guarantees that once the time has arrived, all functions called from setTimeout() will be finished by the time
* await fakeTimersFixture.advanceTimer(...) ends. It is important if an async function is passed to setTimeout().
*/
export declare class FakeTimersFixture {
setup(): void;
advanceTimer(msToRun: number): Promise<void>;
dispose(): void;
private prevSetTimeout?;
private timeouts;
}
//# sourceMappingURL=fake-timers-fixture.d.ts.map