| Current Path : /var/www/homesaver/www/bitrix/js/location/core/src/repository/ |
| 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);
}
}