File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/notebooks/deepnote/converters Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import { NotebookCellData , NotebookCellKind } from 'vscode' ;
2+ import { z } from 'zod' ;
23
34import type { BlockConverter } from './blockConverter' ;
45import type { DeepnoteBlock } from '../deepnoteTypes' ;
56import { DeepnoteBigNumberMetadataSchema } from '../deepnoteSchemas' ;
67import { parseJsonWithFallback } from '../dataConversionUtils' ;
7- import { z } from 'zod ' ;
8+ import { DEEPNOTE_VSCODE_RAW_CONTENT_KEY } from './constants ' ;
89
9- export const DEEPNOTE_VSCODE_RAW_CONTENT_KEY = 'deepnote_jupyter_raw_content' ;
1010const DEFAULT_BIG_NUMBER_CONFIG = DeepnoteBigNumberMetadataSchema . parse ( { } ) ;
1111
1212export class ChartBigNumberBlockConverter implements BlockConverter {
Original file line number Diff line number Diff line change 1+ export const DEEPNOTE_VSCODE_RAW_CONTENT_KEY = 'deepnote_vscode_raw_content' ;
You can’t perform that action at this time.
0 commit comments