export interface team {
football:Football
table-tennis:TableTennis
}
export interface Football{
goalPost:any
ball:any
}
export interface TableTennis{
bat:any
ball:any
}
How to write a key name in the type script interface if it has '-'
36 views Asked by Sayan At
2
Encase the key name in quotes, similar to how you would do it in JSON
TS Playground