export interface EntitySet { name: string; type: string; } export default class EdmxUtil { static parse(content: string): undefined; static getEntitySet(edmxObject: any): EntitySet[]; static getEntityTypeProperties(edmxObject: any, type: string): any[]; private static getDataServices; private static getEntitySetFromDataServices; private static getEntitySetFromDataService; }