enumOptions and enum reader used everywhere

This commit is contained in:
2026-06-04 03:49:35 +05:30
parent 7c33bd9c7c
commit d6506e854a
7 changed files with 31 additions and 19 deletions

View File

@@ -17,7 +17,7 @@ export interface SelectOption {
export interface EnumOption {
key: string;
value: string | string[];
value: string;
}
export interface ResourceField {