Skip to content

Commit 471b2d2

Browse files
committed
refactor: cleanup imports
1 parent fd0fc00 commit 471b2d2

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/index.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/* eslint-disable no-multi-assign */
22
import { parse, preprocess } from 'svelte/compiler';
3-
import type { Ast } from 'svelte/types/compiler/interfaces.d';
4-
import type {
5-
PreprocessorGroup,
6-
MarkupPreprocessor,
7-
} from 'svelte/types/compiler/preprocess/index.d';
3+
import type { Ast } from 'svelte/types/compiler/interfaces';
4+
import type { PreprocessorGroup, MarkupPreprocessor } from 'svelte/types/compiler/preprocess/index';
85
import type { PluginOptions } from './types';
96
import { nativeProcessor, mixedProcessor, scopedProcessor } from './processors';
107
import {

0 commit comments

Comments
 (0)