Skip to content

Commit 1a6f696

Browse files
committed
fix(): internal type
1 parent 071afa7 commit 1a6f696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/config/validate-plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function validatePlugins(config: d.Config, diagnostics: d.Diagnostic[]) {
2323
config.plugins = getPlugins(config.plugins);
2424
}
2525

26-
function getPlugins(plugins: any[]): Plugin[] {
26+
function getPlugins(plugins: any[]): d.Plugin[] {
2727
return plugins.filter(plugin => {
2828
return !!(plugin && typeof plugin === 'object');
2929
});

0 commit comments

Comments
 (0)