I'm looking to communicate a string in my design that includes indexes, with the possibility of ending the string with either "work" or "crash":
export interface Test {
date: string,
'stat.conv[index: number].key[index: number].(work || crash)': Test2[]
}
Does TypeScript support this kind of syntax?