UNPKG

alpha_vantage_api_wrapper

Version:
13 lines (11 loc) 304 B
import {VALIDATION_ERROR, NO_TOKEN} from './consts'; export class ErrorSerializer { static ValidationError(error: any) { let response = { status: VALIDATION_ERROR, message: error.annotate, details: error.details } return response; } }