Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/location/core/src/repository/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/location/core/src/repository/sourcerepository.js

import BaseRepository from './baserepository';

export default class SourceRepository extends BaseRepository
{
	constructor(props = {}) {
		props.path = 'location.api.source';
		super(props);
	}

	getProps(): Promise
	{
		return this.actionRunner.run('getProps', {})
			.then(this.processResponse);
	}
}