Initial commit
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
import type { LoggerApi } from '~/composables/useLogger'
|
||||
import type { AuthClient } from '~/types/auth'
|
||||
import type { ApiClients } from '~/types/api'
|
||||
|
||||
declare module '#app' {
|
||||
interface NuxtApp {
|
||||
$api: ApiClients
|
||||
$auth: AuthClient
|
||||
$logger: LoggerApi
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'vue' {
|
||||
interface ComponentCustomProperties {
|
||||
$api: ApiClients
|
||||
$auth: AuthClient
|
||||
$logger: LoggerApi
|
||||
}
|
||||
}
|
||||
|
||||
export {}
|
||||
Reference in New Issue
Block a user