| 347 | } |
| 348 | |
| 349 | export interface TailwindTokenMap { |
| 350 | spacing: Record<string, string>; |
| 351 | colors: Record<string, string>; |
| 352 | fontSize: Record<string, string>; |
| 353 | fontWeight: Record<string, string>; |
| 354 | borderRadius: Record<string, string>; |
| 355 | borderWidth: Record<string, string>; |
| 356 | opacity: Record<string, string>; |
| 357 | letterSpacing: Record<string, string>; |
| 358 | lineHeight: Record<string, string>; |
| 359 | spacingReverse: Record<string, string>; |
| 360 | colorsReverse: Record<string, string>; |
| 361 | fontSizeReverse: Record<string, string>; |
| 362 | fontWeightReverse: Record<string, string>; |
| 363 | borderRadiusReverse: Record<string, string>; |
| 364 | borderWidthReverse: Record<string, string>; |
| 365 | opacityReverse: Record<string, string>; |
| 366 | letterSpacingReverse: Record<string, string>; |
| 367 | lineHeightReverse: Record<string, string>; |
| 368 | } |
| 369 | |
| 370 | export type TransformErrorCode = |
| 371 | | "DYNAMIC_CLASSNAME" |
nothing calls this directly
no outgoing calls
no test coverage detected