소스 검색

Impore OutputType from output area

Steven Silvester 9 년 전
부모
커밋
89cec41c97
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      src/notebook/notebook/nbformat.ts

+ 1 - 5
src/notebook/notebook/nbformat.ts

@@ -3,7 +3,7 @@
 // https://github.com/jupyter/nbformat/blob/master/nbformat/v4/nbformat.v4.schema.json
 
 import {
-  MimeBundle
+  MimeBundle, OutputType
 } from '../output-area';
 
 
@@ -24,10 +24,6 @@ export
 const MINOR_VERSION = 0;
 
 
-export
-type OutputType = "execute_result" | "display_data" | "stream" | "error";
-
-
 export
 interface BaseOutput {
   output_type: OutputType;