//! Relation tracking for TypeScript built on top of the shared relations core.
//! This module wires TypeScript-specific hooks into the shared traversal so we
//! can capture type-only metadata and handle TypeScript-specific syntax without
//! duplicating JavaScript logic.
//!
//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.
pub
pub use TypeScriptGraphBuilder;
pub use *;