( username: string, certSlug: string )
| 195 | completionTime: string; |
| 196 | } |
| 197 | export function getShowCert( |
| 198 | username: string, |
| 199 | certSlug: string |
| 200 | ): Promise<ResponseWithData<Cert>> { |
| 201 | return get(`/certificate/showCert/${username}/${certSlug}`); |
| 202 | } |
| 203 | |
| 204 | export function getUsernameExists( |
| 205 | username: string |