/** * X-Dimension: Module model * Represents a module from docs/modules/*.md */ export interface Module { id: string; plugin_id: string; file_path: string; content_hash: string; content_markdown: string; line_count: number | null; byte_size: number | null; deleted_at: Date | null; created_at: Date; updated_at: Date; } /** * Module symbol association * Links modules to their symbols */ export interface ModuleSymbol { id: string; module_id: string; symbol_external_id: string; symbol_name: string; symbol_kind: string; } //# sourceMappingURL=module.d.ts.map