Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

22
types/logger.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
import type { Logger } from "pino";
declare module "#app" {
interface NuxtApp {
$logger: Logger;
}
}
declare module "vue" {
interface ComponentCustomProperties {
$logger: Logger;
}
}
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$logger: Logger
}
}
export {}

13
types/nuxt-extensions.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import { NuxtApp } from '#app'
declare module '#app' {
interface NuxtApp {
$audioPrepared: () => Promise<void>
}
}
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$audioPrepared: () => Promise<void>
}
}