| Current Path : /var/www/homesaver/www/bitrix/js/ui/popup-with-header/src/templates/ |
| 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;
}
}