| 1 | export interface Template { |
| 2 | id: string; |
| 3 | name: string; |
| 4 | description: string; |
| 5 | content: string; |
| 6 | category: 'preset' | 'custom'; |
| 7 | tags: string[]; |
| 8 | createdAt: number; |
| 9 | lastUsed?: number; |
| 10 | useCount: number; |
| 11 | } |
| 12 | |
| 13 | export interface TemplateCategory { |
| 14 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected