Add support for lists in module option

This feature allows a module maker to use a list as the different possible values for a module integration.
This commit is contained in:
Thomas Camlong
2022-06-28 11:27:23 +02:00
parent 9945ef892e
commit e93a3a3b5f
2 changed files with 41 additions and 3 deletions

View File

@@ -16,5 +16,6 @@ interface Option {
export interface OptionValues {
name: string;
value: boolean | string;
value: boolean | string | string[];
options?: string[];
}