feat: Upgrade storybook to 9.1.6 (no-changelog) (#19550)

This commit is contained in:
Alex Grozav
2025-09-15 15:50:17 +01:00
committed by GitHub
parent 185fc41ca9
commit 7902ad6785
93 changed files with 748 additions and 2082 deletions

View File

@@ -5,6 +5,7 @@ import type { VNode, ComponentPublicInstance } from 'vue';
import type { PartialDeep } from 'type-fest';
import type { ExternalHooks } from '@/types/externalHooks';
import type { FrontendSettings } from '@n8n/api-types';
import type { Plugin as PrettierPlugin } from 'prettier';
export {};
@@ -39,3 +40,9 @@ declare global {
findLast(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T;
}
}
declare module 'prettier/plugins/estree' {
const plugin: PrettierPlugin;
export = plugin;
export default plugin;
}