5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default async (uuid: string): Promise<void> => {
|
|
await http.delete(`/api/client/account/security-keys/${uuid}`);
|
|
};
|