rename typedef

This commit is contained in:
Send_Nukez 2021-10-23 10:36:40 +02:00
parent 5e5d7a8636
commit 02c968e676

View file

@ -2,7 +2,7 @@
// document.getElementById("popover-container").style.height = 0; // document.getElementById("popover-container").style.height = 0;
class ConfigMenu { class ConfigMenu {
/** /**
* @typedef {Object} DribbblishConfigOptions * @typedef {Object} DribbblishConfigItem
* @property {"checkbox" | "select" | "button" | "slider" | "number" | "text" | "time"} type * @property {"checkbox" | "select" | "button" | "slider" | "number" | "text" | "time"} type
* @property {String|DribbblishConfigArea} [area={name: "Main Settings", order: 0}] * @property {String|DribbblishConfigArea} [area={name: "Main Settings", order: 0}]
* @property {any} [data={}] * @property {any} [data={}]
@ -16,7 +16,7 @@ class ConfigMenu {
* @property {showChildren} [showChildren] * @property {showChildren} [showChildren]
* @property {onAppended} [onAppended] * @property {onAppended} [onAppended]
* @property {onChange} [onChange] * @property {onChange} [onChange]
* @property {DribbblishConfigOptions[]} [children=[]] * @property {DribbblishConfigItem[]} [children=[]]
*/ */
/** /**
@ -42,7 +42,7 @@ class ConfigMenu {
* @returns {void} * @returns {void}
*/ */
/** @type {Object.<string, DribbblishConfigOptions>} */ /** @type {Object.<string, DribbblishConfigItem>} */
#config; #config;
constructor() { constructor() {
@ -78,7 +78,7 @@ class ConfigMenu {
/** /**
* @private * @private
* @param {DribbblishConfigOptions} options * @param {DribbblishConfigItem} options
*/ */
addInputHTML(options) { addInputHTML(options) {
this.registerArea(options.area); this.registerArea(options.area);
@ -106,7 +106,7 @@ class ConfigMenu {
} }
/** /**
* @param {DribbblishConfigOptions} options * @param {DribbblishConfigItem} options
*/ */
register(options) { register(options) {
const defaultOptions = { const defaultOptions = {