From 9d9f67c91a4f28a9bd9114ef6cdf6f5793286269 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 16 Jun 2020 15:17:46 +0000 Subject: [PATCH] fix(core): update --- ts/typedrequest.classes.typedresponseerror.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/typedrequest.classes.typedresponseerror.ts b/ts/typedrequest.classes.typedresponseerror.ts index 14df603..edea912 100644 --- a/ts/typedrequest.classes.typedresponseerror.ts +++ b/ts/typedrequest.classes.typedresponseerror.ts @@ -3,7 +3,7 @@ import * as plugins from './typedrequest.plugins'; export class TypedResponseError { public errorText: string; public errorData: any; - constructor(errorTextArg: string, errorDataArg: any) { + constructor(errorTextArg: string, errorDataArg?: any) { this.errorText = errorTextArg; this.errorData = errorDataArg; }