I\'ve a lot of tables in Lovefield and their respective Interfaces for what columns they have. Example:
export interface IMyTable { id: number; t
You will need to make a class that implements your interface, instantiate it and then use Object.keys(yourObject) to get the properties.
Object.keys(yourObject)
export class YourClass implements IMyTable { ... }
then
let yourObject:YourClass = new YourClass(); Object.keys(yourObject).forEach((...) => { ... });