Fix type annotation
This commit is contained in:
parent
4920983f23
commit
bd792d7661
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ export default async (endpoint: string, user: IUser, app: IApp, data: any, file?
|
|||
}
|
||||
|
||||
// API invoking
|
||||
return await ep.exec(data, user, app, file).catch(e => {
|
||||
return await ep.exec(data, user, app, file).catch((e: Error) => {
|
||||
if (e instanceof ApiError) {
|
||||
throw e;
|
||||
} else {
|
||||
|
@ -76,7 +76,7 @@ export default async (endpoint: string, user: IUser, app: IApp, data: any, file?
|
|||
throw new ApiError(null, {
|
||||
e: {
|
||||
message: e.message,
|
||||
code: e.code,
|
||||
code: e.name,
|
||||
stack: e.stack
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue