mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-07 02:47:32 -08:00
22bdb0568e
Co-authored-by: Alex Grozav <alex@grozav.com>
12 lines
212 B
TypeScript
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>;
|
|
}
|
|
}
|