Skip to content

Commit

Permalink
fix: biome errors (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
wulmer authored Dec 12, 2024
1 parent d110019 commit 063a77b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion yaku-ui/frog-vue/env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
const component: DefineComponent<Record<string, unknown>, object, any>
export default component
}
2 changes: 1 addition & 1 deletion yaku-ui/frog-vue/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"lib": [
"es2022",
"DOM"
],
]
}
}
6 changes: 3 additions & 3 deletions yaku-ui/frog-vue/tsconfig.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "@vue/tsconfig/tsconfig.node.json",
"include": [
"vite.config.*",
"vitest.config.*",
"vitest.config.*"
],
"compilerOptions": {
"composite": true,
Expand All @@ -11,11 +11,11 @@
"declaration": true,
"outDir": "types",
"types": [
"node",
"node"
],
"lib": [
"ESNext",
"DOM"
],
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ import { REDIRECT_URL_KEY } from '~/config/msal'
import { useMsal } from './useMsal'

export type MsalAuthenticationResult = {
acquireToken: Function
acquireToken: (
callbackInteractionType?: InteractionType | undefined,
callbackRequest?: SilentRequest | undefined,
) => Promise<AuthenticationResult | null>
result: Ref<AuthenticationResult | null>
error: Ref<AuthError | null>
inProgress: Ref<boolean>
Expand Down
2 changes: 1 addition & 1 deletion yaku-ui/qg-service-ui/tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"include": [
"vite.config.ts",
"ui-dev-config.json"
],
]
}
2 changes: 1 addition & 1 deletion yaku-ui/qg-service-ui/tsconfig.paths.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"./helpers"
]
}
},
}
}

0 comments on commit 063a77b

Please sign in to comment.