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
commit 69d42ae95b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}
}