Many claim that you can create an object using interface in the following manner:
let obj: ILookup = { id: 1, name: 'abc'}
Could you please provide me with the syntax to write this inline, for example like so:
lookups.push(ILookup = { id: 1, name: 'abc'})
?