Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/popup-with-header/src/templates/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/popup-with-header/src/templates/base-template.js

import type { ResultContent } from '../types/template';

export class BaseTemplate
{
	getContent(): Array<ResultContent>
	{
		throw new Error('Must be implemented in a child class');
	}

	setOptions(options): void
	{
		this.options = options;
	}
}