n8n/packages/design-system/src/shims-vue.d.ts
Ricardo Espinoza 22bdb0568e
refactor(editor): Fix remaining FE type check errors (no-changelog) (#9607)
Co-authored-by: Alex Grozav <alex@grozav.com>
2024-06-10 16:23:06 +03:00

12 lines
212 B
TypeScript

export {};
/**
* @docs https://vuejs.org/guide/typescript/options-api.html#augmenting-global-properties
*/
declare module 'vue' {
interface ComponentCustomProperties {
$style: Record<string, string>;
}
}