/** * heading.ts * * Type definitions for heading-related types. * These represent HTML heading semantics (h1-h6) and typography scales. */ export type THeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; export type THeadingSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; export type THeadingWeight = 'light' | 'regular' | 'medium' | 'bold';