refactor: fix typescript warnings
This commit is contained in:
parent
5b50d3e525
commit
fa53502901
@ -1,13 +1,14 @@
|
||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||
import { $fetch } from 'ohmyfetch'
|
||||
|
||||
export interface useAuth {
|
||||
login(authCode: string): Promise<void>
|
||||
logout(): Promise<void>
|
||||
isAuthenticated(): Promise<boolean>
|
||||
loadUserInfo(): Promise<boolean>
|
||||
loadUserInfo(): Promise<void>
|
||||
}
|
||||
|
||||
export default () => {
|
||||
export default (): useAuth => {
|
||||
const userInfoStore = useUserinfoStore()
|
||||
|
||||
return {
|
||||
|
@ -1,8 +1,12 @@
|
||||
// https://v3.nuxtjs.org/concepts/typescript
|
||||
{
|
||||
"include": ["src/**/*"],
|
||||
// https://v3.nuxtjs.org/concepts/typescript
|
||||
"include": [
|
||||
"src/**/*"
|
||||
],
|
||||
"extends": "./.nuxt/tsconfig.json",
|
||||
"types": [
|
||||
"@pinia/nuxt"
|
||||
]
|
||||
"compilerOptions": {
|
||||
"types": [
|
||||
"@pinia/nuxt"
|
||||
]
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue
Block a user