@nteract/types
Advanced tools
Comparing version 5.0.0-alpha.0 to 5.0.0
@@ -32,3 +32,7 @@ /// <reference types="node" /> | ||
/** Kernel is not connected to current notebook. */ | ||
NotConnected = "not connected" | ||
NotConnected = "not connected", | ||
/** 0mq-based kernel is launched. */ | ||
Launched = "launched", | ||
/** 0mq-based kernel is killed. */ | ||
Killed = "killed" | ||
} | ||
@@ -35,0 +39,0 @@ export interface LocalKernelProps { |
@@ -36,2 +36,6 @@ "use strict"; | ||
KernelStatus["NotConnected"] = "not connected"; | ||
/** 0mq-based kernel is launched. */ | ||
KernelStatus["Launched"] = "launched"; | ||
/** 0mq-based kernel is killed. */ | ||
KernelStatus["Killed"] = "killed"; | ||
})(KernelStatus = exports.KernelStatus || (exports.KernelStatus = {})); | ||
@@ -38,0 +42,0 @@ exports.makeLocalKernelRecord = Immutable.Record({ |
{ | ||
"name": "@nteract/types", | ||
"version": "5.0.0-alpha.0", | ||
"version": "5.0.0", | ||
"description": "A collection of type definitions used within core nteract packages", | ||
@@ -16,3 +16,3 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@nteract/commutable": "^7.2.3-alpha.0", | ||
"@nteract/commutable": "^7.2.3", | ||
"immutable": "^4.0.0-rc.12", | ||
@@ -22,3 +22,3 @@ "rxjs": "^6.3.3", | ||
}, | ||
"gitHead": "794ee4009bf53dcf969c50c4a3f50926728add10" | ||
"gitHead": "f595c033d4a8d70706d10197393110bb45dbf152" | ||
} |
@@ -54,3 +54,7 @@ import { ChildProcess } from "child_process"; | ||
/** Kernel is not connected to current notebook. */ | ||
NotConnected = "not connected" | ||
NotConnected = "not connected", | ||
/** 0mq-based kernel is launched. */ | ||
Launched = "launched", | ||
/** 0mq-based kernel is killed. */ | ||
Killed = "killed" | ||
} | ||
@@ -57,0 +61,0 @@ |
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
641597
2267
1
Updated@nteract/commutable@^7.2.3