I have defined the following type:
type UserConfigCategories = 'tables-config' | 'link-config' | 'general-config';
however this type can grow and I do not want to have to update it. Is it possible to create this type dynamically from an array, for example?