| 42 | } |
| 43 | // Messaging |
| 44 | export interface ConversionData { |
| 45 | code: string; |
| 46 | settings: PluginSettings; |
| 47 | htmlPreview: HTMLPreview; |
| 48 | colors: SolidColorConversion[]; |
| 49 | gradients: LinearGradientConversion[]; |
| 50 | warnings: Warning[]; |
| 51 | } |
| 52 | |
| 53 | export type Warning = string; |
| 54 | export type Warnings = Set<Warning>; |
nothing calls this directly
no outgoing calls
no test coverage detected