Adding more documentation to make it easier when writing extensions.

This commit is contained in:
Matt Mo 2021-08-24 23:59:38 -07:00
parent 2d99f31bd4
commit 46ff7743a1

View File

@ -50,10 +50,19 @@ class IgniteElement extends HTMLElement {
constructor() {
super();
/** @type {Boolean} */
this.elementConnected = false; //Used to know if the connectedCallback was already called.
/** @type {IgniteTemplate} */
this.template = null;
/** @type {HTMLElement[]} */
this.elements = [];
/** @type {IgniteCallback} */
this.readyCallback = new IgniteCallback(() => this.ready());
/** @type {IgniteCallback[]} */
this.onDisconnectCallbacks = [];
//Create the variables for this element.