Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/fileman/userfield/address_widget/src/view/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/fileman/userfield/address_widget/src/view/baseview.js

export class BaseView
{
	#wrapper: ?Element = null;

	constructor(params: Object) {
		this.#wrapper = params.wrapper;
	}

	getWrapper(): Element
	{
		return this.#wrapper;
	}

	layout(): Element
	{
		throw new Error('please implement the layout() method');
	}
}