16 lines
213 B
TypeScript
16 lines
213 B
TypeScript
|
|
import type { Faro } from '@grafana/faro-core'
|
||
|
|
|
||
|
|
declare module '#app' {
|
||
|
|
interface NuxtApp {
|
||
|
|
$faro: Faro
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module 'vue' {
|
||
|
|
interface ComponentCustomProperties {
|
||
|
|
$faro: Faro
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export {}
|