UNPKG

willcore.ui

Version:

Simple, Fast And Powerful Client-Side HTML UI Framework.

11 lines (10 loc) 334 B
class elementCreationConfig { constructor() { this.html = null; this.htmlTemplateURL = null; } validate(){ if (!this.html && !this.htmlTemplateURL) throw `Invalid custom element configuration. Please set the HTML or HTMLTemplateURL properties.`; } } export { elementCreationConfig };