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 +}