Files
users/data-ingestion/data-storage.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

5 lines
157 B
TypeScript

// 定义数据存储接口
export interface DataStorage {
storeData(data: any[], schema: any): Promise<void> // 存储数据,需要指定数据结构
}