| 9 | htmlGenerationMode: "html" | "jsx" | "styled-components" | "svelte"; |
| 10 | } |
| 11 | export interface TailwindSettings extends HTMLSettings { |
| 12 | tailwindGenerationMode: "html" | "jsx" | "twig"; |
| 13 | roundTailwindValues: boolean; |
| 14 | roundTailwindColors: boolean; |
| 15 | useColorVariables: boolean; |
| 16 | customTailwindPrefix?: string; |
| 17 | embedVectors: boolean; |
| 18 | baseFontSize: number; |
| 19 | useTailwind4: boolean; |
| 20 | thresholdPercent: number; |
| 21 | baseFontFamily: string; |
| 22 | fontFamilyCustomConfig: Record<string, string[]> |
| 23 | } |
| 24 | export interface FlutterSettings { |
| 25 | flutterGenerationMode: "fullApp" | "stateless" | "snippet"; |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected