13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { NuxtApp } from '#app'
|
|
|
|
declare module '#app' {
|
|
interface NuxtApp {
|
|
$audioPrepared: () => Promise<void>
|
|
}
|
|
}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$audioPrepared: () => Promise<void>
|
|
}
|
|
} |