Files

16 lines
213 B
TypeScript
Raw Permalink Normal View History

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