Is there a method to transform array values into strings? Here is what I came up with:
class A
{
public keys = ['name', 'age']
}
type ArrayKeys = P in A['keys'] // 'name' or 'age'
Any suggestions on how to limit ArrayKeys to only being within the values of A['keys']?