(name: string)
| 78 | } |
| 79 | |
| 80 | export async function getProject(name: string): Promise<ProjectDetail> { |
| 81 | return fetchJSON(`/projects/${encodeURIComponent(name)}`) |
| 82 | } |
| 83 | |
| 84 | export async function deleteProject(name: string): Promise<void> { |
| 85 | await fetchJSON(`/projects/${encodeURIComponent(name)}`, { |
nothing calls this directly
no test coverage detected