Fix type error (#27274)

This commit is contained in:
GuanMu
2025-10-22 17:08:27 +08:00
committed by GitHub
parent 40d3332690
commit c61c2b0abd
16 changed files with 55 additions and 54 deletions

View File

@@ -2,6 +2,6 @@ import type { TypeWithI18N } from '@/app/components/header/account-setting/model
export type Label = {
name: string
label: TypeWithI18N
icon: string
label: TypeWithI18N | string
icon?: string
}

View File

@@ -7,6 +7,7 @@ export enum LOC {
export enum AuthType {
none = 'none',
apiKey = 'api_key', // backward compatibility
apiKeyHeader = 'api_key_header',
apiKeyQuery = 'api_key_query',
}