imng-ngrx-utils
Version:
This library was generated with [Nx](https://nx.dev).
10 lines (7 loc) • 461 B
TypeScript
import { Observable } from 'rxjs';
declare function readFirst<T>(o: Observable<T>): Promise<T>;
declare function readAll<T>(o: Observable<T>): Promise<T[]>;
declare function mockConsoleError(): jest.SpyInstance<void, any[], any>;
declare function mockConsoleWarn(): jest.SpyInstance<void, any[], any>;
declare function mockConsoleGroup(): jest.SpyInstance<void, any[], any>;
export { mockConsoleError, mockConsoleGroup, mockConsoleWarn, readAll, readFirst };