/** * @export * @class Location */ export declare class Location { /** * @type {string} * @memberof Location */ name?: string; /** * @type {string} * @memberof Location */ description?: string; constructor(obj?: Partial); } export default Location;