Interface EnumObj

Type for the enum object with custom message

interface EnumObj {
    message?: string;
    values: EnumValues | DeferredFunc<EnumValues>;
}

Properties

Properties

message?: string