fix: cover missed source paths for eslint (#1956)

This commit is contained in:
Bowen Liang
2024-01-08 18:06:23 +08:00
committed by GitHub
parent 5ff701ca3f
commit 69d42ae95b
7 changed files with 297 additions and 295 deletions

View File

@@ -1,4 +1,4 @@
import { Locale } from '@/i18n'
import type { Locale } from '@/i18n'
export type ResponseHolder = {}
@@ -6,7 +6,7 @@ export type ConversationItem = {
id: string
name: string
inputs: Record<string, any> | null
introduction: string,
introduction: string
}
export type SiteInfo = {
@@ -18,4 +18,4 @@ export type SiteInfo = {
prompt_public: boolean
copyright?: string
privacy_policy?: string
}
}