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