Files
users/data-ingestion/data-source.ts
v0 2408d50cb0 refactor: overhaul UI for streamlined user experience
Redesign navigation, home overview, user portrait, and valuation pages
with improved functionality and responsive design.

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-07-18 13:47:12 +00:00

11 lines
294 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 定义数据源类型
export type DataSourceType = "mysql" | "postgresql" | "mongodb" | "api" | "file"
// 定义数据源接口
export interface DataSource {
id: string
name: string
type: DataSourceType
config: any // 数据源配置信息例如连接字符串、API 地址等
}