MCPcopy Create free account
hub / github.com/Railly/agentfiles / getTypeCounts

Method getTypeCounts

src/store.ts:235–241  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

233 }
234
235 getTypeCounts(): Map<string, number> {
236 const counts = new Map<string, number>();
237 for (const item of this.items.values()) {
238 counts.set(item.type, (counts.get(item.type) || 0) + 1);
239 }
240 return counts;
241 }
242
243 getProjectCounts(): Map<string, number> {
244 const counts = new Map<string, number>();

Callers 1

renderTypeSectionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected