const RETURN_TYPES = ['Exit'] as const;
type ReturnType = typeof RETURN_TYPES[number];
export const formReturnSchema = type({
returnType: type.enumerated(...RETURN_TYPES).default('' as type.cast<ReturnType>),
});
const RETURN_TYPES = ['Exit'] as const;
type ReturnType = typeof RETURN_TYPES[number];
export const formReturnSchema = type({
returnType: type.enumerated(...RETURN_TYPES).default('' as type.cast<ReturnType>),
});