throw not implemented error in api methods
Closed this issue · 0 comments
Combo819 commented
throw not implemented error like:
function getUserIdByUsernameApi(username: string): Promise<string> {
throw new NotImplementedError('The method is not implemented');
}
rather than
function getUserIdByUsernameApi(username: string): Promise<string> {
return crawlerAxios({});
}