From 6562a410b0db141cc1c19bcdc068f46cb6324259 Mon Sep 17 00:00:00 2001 From: Naved Anwar Maulavi Date: Tue, 6 Dec 2022 12:55:45 -0800 Subject: [PATCH] Update ComponentRestrictions country type --- src/objects/options/componentRestrictions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/objects/options/componentRestrictions.ts b/src/objects/options/componentRestrictions.ts index 09d146a..f613e70 100644 --- a/src/objects/options/componentRestrictions.ts +++ b/src/objects/options/componentRestrictions.ts @@ -1,5 +1,5 @@ export class ComponentRestrictions { - public country: string; + public country: string | Array; constructor(obj?: Partial) { if (!obj) @@ -7,4 +7,4 @@ export class ComponentRestrictions { Object.assign(this, obj); } -} \ No newline at end of file +}