@jupyterlab/nbformat
Advanced tools
Comparing version 4.0.0-alpha.19 to 4.0.0-alpha.20
@@ -51,3 +51,3 @@ /** | ||
*/ | ||
export declare type MultilineString = string | string[]; | ||
export type MultilineString = string | string[]; | ||
/** | ||
@@ -68,7 +68,7 @@ * A mime-type keyed dictionary of data. | ||
*/ | ||
export declare type ExecutionCount = number | null; | ||
export type ExecutionCount = number | null; | ||
/** | ||
* Cell output metadata. | ||
*/ | ||
export declare type OutputMetadata = PartialJSONObject; | ||
export type OutputMetadata = PartialJSONObject; | ||
/** | ||
@@ -87,3 +87,3 @@ * Validate a mime type/value pair. | ||
*/ | ||
export declare type CellType = 'code' | 'markdown' | 'raw' | string; | ||
export type CellType = 'code' | 'markdown' | 'raw' | string; | ||
/** | ||
@@ -257,3 +257,3 @@ * The Jupyter metadata namespace. | ||
*/ | ||
export declare type ICell = IRawCell | IMarkdownCell | ICodeCell | IUnrecognizedCell; | ||
export type ICell = IRawCell | IMarkdownCell | ICodeCell | IUnrecognizedCell; | ||
/** | ||
@@ -274,7 +274,7 @@ * Test whether a cell is a raw cell. | ||
*/ | ||
export declare type ICellMetadata = IBaseCellMetadata | IRawCellMetadata | ICodeCellMetadata; | ||
export type ICellMetadata = IBaseCellMetadata | IRawCellMetadata | ICodeCellMetadata; | ||
/** | ||
* The valid output types. | ||
*/ | ||
export declare type OutputType = 'execute_result' | 'display_data' | 'stream' | 'error' | 'update_display_data'; | ||
export type OutputType = 'execute_result' | 'display_data' | 'stream' | 'error' | 'update_display_data'; | ||
/** | ||
@@ -364,3 +364,3 @@ * The base output type. | ||
*/ | ||
export declare type StreamType = 'stdout' | 'stderr'; | ||
export type StreamType = 'stdout' | 'stderr'; | ||
/** | ||
@@ -415,2 +415,2 @@ * Output of an error that occurred during code cell execution. | ||
*/ | ||
export declare type IOutput = IUnrecognizedOutput | IExecuteResult | IDisplayData | IStream | IError; | ||
export type IOutput = IUnrecognizedOutput | IExecuteResult | IDisplayData | IStream | IError; |
{ | ||
"name": "@jupyterlab/nbformat", | ||
"version": "4.0.0-alpha.19", | ||
"version": "4.0.0-alpha.20", | ||
"description": "Notebook format interfaces", | ||
@@ -26,3 +26,4 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"schema/*.json", | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}", | ||
"src/**/*.{ts,tsx}" | ||
], | ||
@@ -41,9 +42,9 @@ "scripts": { | ||
"dependencies": { | ||
"@lumino/coreutils": "^2.0.0-beta.0" | ||
"@lumino/coreutils": "^2.0.0-rc.0" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.0.0-alpha.19", | ||
"@jupyterlab/testing": "^4.0.0-alpha.20", | ||
"@types/jest": "^29.2.0", | ||
"rimraf": "~3.0.0", | ||
"typescript": "~4.7.3" | ||
"typescript": "~5.0.0-beta" | ||
}, | ||
@@ -50,0 +51,0 @@ "publishConfig": { |
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
27322
5
991