🧑‍💻 Added strings as an option type for modules

This commit is contained in:
ajnart
2022-05-24 20:14:07 +02:00
parent bbb35b236f
commit 802f7fd6c7
2 changed files with 42 additions and 4 deletions

View File

@@ -16,5 +16,5 @@ interface Option {
export interface OptionValues {
name: string;
value: boolean;
value: boolean | string;
}