DEV Community

Discussion on: My confusions about TypeScript

Collapse
 
coly010 profile image
Colum Ferry
interface SimpleObject {
  [key: string] : any
}

Instead of this you can just use the object type?

myFunc(simpleObj: object): object {...}