//! Registration types for TypeScript codegen macros.
//!
//! These live outside the gated `codegen` module so the macros work on all platforms.
//! The actual codegen functions that consume these registrations remain in `codegen/mod.rs`.
/// Value types for TypeScript constant generation.
/// Registration for a Rust constant to be exported as a TypeScript constant.
collect!;
/// Registration for ts-rs type exports.
/// Allows types with `#[derive(TS)]` to be exported without running cargo test.
collect!;