| 126 | } |
| 127 | |
| 128 | export interface Template { |
| 129 | id: string; |
| 130 | cat: string; |
| 131 | icon: string; |
| 132 | name: string; |
| 133 | desc: string; |
| 134 | depts: string[]; |
| 135 | est: string; |
| 136 | cost: string; |
| 137 | params: TemplateParam[]; |
| 138 | command: string; |
| 139 | } |
| 140 | |
| 141 | export const TEMPLATES: Template[] = [ |
| 142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected