Added enum module

This commit is contained in:
Kir_Antipov 2023-01-21 15:21:34 +00:00
parent 64f717d127
commit 5a2e5f176c

21
src/utils/enum/index.ts Normal file
View file

@ -0,0 +1,21 @@
export {
Enum,
EnumOptions,
} from "./enum";
export {
EnumKey,
} from "./enum-key";
export {
EnumValue,
} from "./enum-value";
export {
EnumEntry,
} from "./enum-entry";
export {
ENUM_SEPARATORS,
DEFAULT_ENUM_SEPARATOR,
} from "./enum-separators";