Gathering detailed insights and metrics for @types/rx-lite-testing
Gathering detailed insights and metrics for @types/rx-lite-testing
Gathering detailed insights and metrics for @types/rx-lite-testing
Gathering detailed insights and metrics for @types/rx-lite-testing
The repository for high quality TypeScript type definitions.
npm install @types/rx-lite-testing
Typescript
Module System
99
Supply Chain
92
Quality
75.4
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,052 Stars
89,753 Commits
30,434 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 17, 2025
Latest Version
4.0.4
Package Id
@types/rx-lite-testing@4.0.4
Unpacked Size
6.18 kB
Size
2.03 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install --save @types/rx-lite-testing
This package contains type definitions for rx-lite-testing (https://github.com/Reactive-Extensions/RxJS).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rx-lite-testing.
1/// <reference types="rx-lite-virtualtime" /> 2 3declare namespace Rx { 4 interface TestScheduler extends VirtualTimeScheduler<number, number> { 5 createColdObservable<T>(...records: Recorded[]): Observable<T>; 6 createHotObservable<T>(...records: Recorded[]): Observable<T>; 7 createObserver<T>(): MockObserver<T>; 8 9 startWithTiming<T>( 10 create: () => Observable<T>, 11 createdAt: number, 12 subscribedAt: number, 13 disposedAt: number, 14 ): MockObserver<T>; 15 startWithDispose<T>(create: () => Observable<T>, disposedAt: number): MockObserver<T>; 16 startWithCreate<T>(create: () => Observable<T>): MockObserver<T>; 17 } 18 19 const TestScheduler: { 20 new(): TestScheduler; 21 }; 22 23 class Recorded { 24 constructor(time: number, value: any, equalityComparer?: (x: any, y: any) => boolean); 25 equals(other: Recorded): boolean; 26 toString(): string; 27 time: number; 28 value: any; 29 } 30 31 const ReactiveTest: { 32 created: number; 33 subscribed: number; 34 disposed: number; 35 36 onNext(ticks: number, value: any): Recorded; 37 onError(ticks: number, exception: any): Recorded; 38 onCompleted(ticks: number): Recorded; 39 40 subscribe(subscribeAt: number, unsubscribeAt?: number): Subscription; 41 }; 42 43 class Subscription { 44 constructor(subscribeAt: number, unsubscribeAt?: number); 45 equals(other: Subscription): boolean; 46 } 47 48 interface MockObserver<T> extends Observer<T> { 49 messages: Recorded[]; 50 } 51 52 interface MockObserverStatic extends ObserverStatic { 53 new<T>(scheduler: IScheduler): MockObserver<T>; 54 } 55 56 const MockObserver: MockObserverStatic; 57} 58 59declare module "rx-lite-testing" { 60 export = Rx; 61} 62
These definitions were written by Igor Oleinikov.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More