| 2 | // Settings |
| 3 | export type Framework = "Flutter" | "SwiftUI" | "HTML" | "Tailwind" | "Compose"; |
| 4 | export interface HTMLSettings { |
| 5 | showLayerNames: boolean; |
| 6 | embedImages: boolean; |
| 7 | embedVectors: boolean; |
| 8 | useColorVariables: boolean; |
| 9 | htmlGenerationMode: "html" | "jsx" | "styled-components" | "svelte"; |
| 10 | } |
| 11 | export interface TailwindSettings extends HTMLSettings { |
| 12 | tailwindGenerationMode: "html" | "jsx" | "twig"; |
| 13 | roundTailwindValues: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected