Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cycle/run

Package Overview
Dependencies
Maintainers
3
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cycle/run - npm Package Compare versions

Comparing version 5.2.0-rc.2 to 5.2.0-rc.3

16

lib/cjs/types.d.ts
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>};

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc