mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
chore: updating imports
This commit is contained in:
parent
5eaf8e20da
commit
439ce98566
2 changed files with 4 additions and 4 deletions
|
|
@ -11,9 +11,9 @@ import {
|
|||
DecorationSet
|
||||
} from '@codemirror/view';
|
||||
|
||||
import { SQLSealLangDefinition } from 'src/grammar/parser';
|
||||
import { RendererRegistry } from 'src/renderer/rendererRegistry';
|
||||
import { traceWalker } from 'src/utils/traceWalker';
|
||||
import { SQLSealLangDefinition } from '../grammar/parser';
|
||||
import { RendererRegistry } from '../renderer/rendererRegistry';
|
||||
import { traceWalker } from '../utils/traceWalker';
|
||||
import { Range } from '@codemirror/state';
|
||||
|
||||
const markDecorations = {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { RenameColumnModal } from '../modal/renameColumnModal';
|
|||
import { CodeSampleModal } from '../modal/showCodeSample';
|
||||
import { GridRenderer } from '../renderer/GridRenderer';
|
||||
import { CellParser } from '../cellParser';
|
||||
import { errorNotice } from 'src/utils/notice';
|
||||
import { errorNotice } from '../utils/notice';
|
||||
|
||||
export const CSV_VIEW_TYPE = "csv-viewer" as const;
|
||||
export const CSV_VIEW_EXTENSIONS = ['csv'];
|
||||
|
|
|
|||
Loading…
Reference in a new issue