@cycle/run
Advanced tools
Comparing version 5.2.0-rc.2 to 5.2.0-rc.3
import { Stream } from 'xstream'; | ||
export interface FantasyObserver<T> { | ||
export declare type FantasyObserver<T> = { | ||
next(x: T): void; | ||
error(err: any): void; | ||
complete(c?: any): void; | ||
} | ||
export interface FantasySubscription { | ||
}; | ||
export declare type FantasySubscription = { | ||
unsubscribe(): void; | ||
} | ||
export interface FantasyObservable<T> { | ||
}; | ||
export declare type FantasyObservable<T> = { | ||
subscribe(observer: FantasyObserver<T>): FantasySubscription; | ||
} | ||
export interface DevToolEnabledSource { | ||
}; | ||
export declare type DevToolEnabledSource = { | ||
_isCycleSource: string; | ||
} | ||
}; | ||
export declare type SinkProxies<Si> = { | ||
@@ -17,0 +17,0 @@ [P in keyof Si]: Stream<any>; |
import { Stream } from 'xstream'; | ||
export interface FantasyObserver<T> { | ||
export declare type FantasyObserver<T> = { | ||
next(x: T): void; | ||
error(err: any): void; | ||
complete(c?: any): void; | ||
} | ||
export interface FantasySubscription { | ||
}; | ||
export declare type FantasySubscription = { | ||
unsubscribe(): void; | ||
} | ||
export interface FantasyObservable<T> { | ||
}; | ||
export declare type FantasyObservable<T> = { | ||
subscribe(observer: FantasyObserver<T>): FantasySubscription; | ||
} | ||
export interface DevToolEnabledSource { | ||
}; | ||
export declare type DevToolEnabledSource = { | ||
_isCycleSource: string; | ||
} | ||
}; | ||
export declare type SinkProxies<Si> = { | ||
@@ -17,0 +17,0 @@ [P in keyof Si]: Stream<any>; |
{ | ||
"name": "@cycle/run", | ||
"version": "5.2.0-rc.2", | ||
"version": "5.2.0-rc.3", | ||
"description": "The Cycle.js run() function to use with xstream", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
import {Stream} from 'xstream'; | ||
export interface FantasyObserver<T> { | ||
export type FantasyObserver<T> = { | ||
next(x: T): void; | ||
error(err: any): void; | ||
complete(c?: any): void; | ||
} | ||
}; | ||
export interface FantasySubscription { | ||
export type FantasySubscription = { | ||
unsubscribe(): void; | ||
} | ||
}; | ||
export interface FantasyObservable<T> { | ||
export type FantasyObservable<T> = { | ||
subscribe(observer: FantasyObserver<T>): FantasySubscription; | ||
} | ||
}; | ||
export interface DevToolEnabledSource { | ||
export type DevToolEnabledSource = { | ||
_isCycleSource: string; | ||
} | ||
}; | ||
@@ -21,0 +21,0 @@ export type SinkProxies<Si> = {[P in keyof Si]: Stream<any>}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
112344