Your IP : 172.69.59.18


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/js/location/core/src/base/
Upload File :
Current File : /var/www/element/data/www/revenuestory.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');
	}
}