MCPcopy
hub / github.com/guaguaguaxia/weekly_report / Template

Interface Template

utils/templateStorage.ts:1–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export 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
13export interface TemplateCategory {
14 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected