| 117 | // ── Templates ── |
| 118 | |
| 119 | export interface TemplateParam { |
| 120 | key: string; |
| 121 | label: string; |
| 122 | type: 'text' | 'textarea' | 'select'; |
| 123 | default?: string; |
| 124 | required?: boolean; |
| 125 | options?: string[]; |
| 126 | } |
| 127 | |
| 128 | export interface Template { |
| 129 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected