fix: add tests for enums

This commit is contained in:
StevanFreeborn
2023-01-26 23:47:25 -06:00
parent fcc47993cd
commit c5de0131e0
20 changed files with 400 additions and 10 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
enum Multiplicity {
export enum Multiplicity {
SingleSelect = 'SingleSelect',
MultiSelect = 'MultiSelect',
}