| 1 | import { escapeHtml, sanitizeUrl } from "../utils"; |
| 2 | |
| 3 | export interface Language { |
| 4 | id: string; |
| 5 | name: string; |
| 6 | icon: string; |
| 7 | extension: string; |
| 8 | } |
| 9 | |
| 10 | export interface RecipeVariant { |
| 11 | doc: string; |
nothing calls this directly
no outgoing calls
no test coverage detected