mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
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>;
|
|
}
|
|
}
|