Your IP : 18.222.182.149


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/location/core/src/base/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/location/core/src/base/photoservicebase.js

import {Location} from 'location.core';

export type BasePhotoServiceRequestPhotosPropsType = {
	location: Location,
	thumbnailHeight: number,
	thumbnailWidth: number,
	maxPhotoCount: number
}

export default class PhotoServiceBase
{
	requestPhotos(props: BasePhotoServiceRequestPhotosPropsType): Promise
	{
		throw new Error('Must be implemented');
	}
}