(name: string)
| 111 | |
| 112 | /** Canonical VFS path for a table's metadata file (`tables/{name}/meta.json`). */ |
| 113 | export function canonicalTableVfsPath(name: string): string { |
| 114 | return `tables/${encodeVfsSegment(name)}/meta.json` |
| 115 | } |
| 116 | |
| 117 | /** Canonical VFS directory for a knowledge base (`knowledgebases/{name}`). */ |
| 118 | export function canonicalKnowledgeBaseVfsDir(name: string): string { |
no test coverage detected