Is it possible to say that everything other than 'keyA' is of type string, while 'keyA' is type string[]?
For example:
row: {
[name: string]: string | string[];
keyA: string[];
everythingButKeyA: string[]
}
How do I specify the everythingButKeyA portion?