* Get a single token's metadata by id. The binding has no direct * accessor and no token-list cursor, so this filters the page * returned by `listTokens()` and throws `NotFoundError` on a miss.
(name: string, id: string)
| 85 | * returned by `listTokens()` and throws `NotFoundError` on a miss. |
| 86 | */ |
| 87 | getToken(name: string, id: string): Promise<ArtifactsTokenInfo>; |
| 88 | /** Revoke a token by id or plaintext. Returns false on a miss. */ |
| 89 | revokeToken(name: string, tokenOrId: string): Promise<boolean>; |
| 90 |
no outgoing calls
no test coverage detected