Skip to content

Commit b2083a8

Browse files
mirkaciampo
authored andcommitted
Fix lint errors in .d.mts type declaration files
1 parent f0aaec5 commit b2083a8

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
import type { Plugin } from 'esbuild';
2-
3-
declare const plugin: Plugin;
1+
declare const plugin: import('esbuild').Plugin;
42
export default plugin;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
import type { PluginCreator } from 'postcss';
2-
3-
declare const plugin: PluginCreator<never>;
1+
declare const plugin: import('postcss').PluginCreator< never >;
42
export default plugin;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
import type { Plugin } from 'vite';
2-
3-
declare const plugin: () => Plugin;
1+
declare const plugin: () => import('vite').Plugin;
42
export default plugin;

0 commit comments

Comments
 (0)