(name: string)
| 116 | |
| 117 | /** Canonical VFS directory for a knowledge base (`knowledgebases/{name}`). */ |
| 118 | export function canonicalKnowledgeBaseVfsDir(name: string): string { |
| 119 | return `knowledgebases/${encodeVfsSegment(name)}` |
| 120 | } |
| 121 | |
| 122 | /** Canonical VFS path for a block catalog entry (`components/blocks/{type}.json`). */ |
| 123 | export function canonicalBlockVfsPath(blockType: string): string { |
no test coverage detected