import type { Database as DBType } from 'better-sqlite3'; interface ScanStats { contracts: number; } export function scanProtobuf(db: DBType, root: string): ScanStats { // Protobuf 扫描器骨架:扫描 packages/shared-proto/proto/*.proto return { contracts: 0 }; }