10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
|
import http from '@/api/http';
|
||
|
|
||
|
export default (email: string, password: string): Promise<void> => {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
http.put('/api/client/account/email', { email, password })
|
||
|
.then(() => resolve())
|
||
|
.catch(reject);
|
||
|
});
|
||
|
};
|