(
projectId: string,
tokenId: string,
)
| 31 | } |
| 32 | |
| 33 | export async function deleteProjectToken( |
| 34 | projectId: string, |
| 35 | tokenId: string, |
| 36 | ): Promise<void> { |
| 37 | await fetchApiVoid(`/projects/${projectId}/api-tokens/${tokenId}`, { |
| 38 | method: "DELETE", |
| 39 | }); |
| 40 | } |
no test coverage detected
searching dependent graphs…