I\'ve a lot of tables in Lovefield and their respective Interfaces for what columns they have. Example:
export interface IMyTable { id: number; t
This should work
var IMyTable: Array = ["id", "title", "createdAt", "isDeleted"];
or
var IMyTable: (keyof IMyTable)[] = ["id", "title", "createdAt", "isDeleted"];