AnP/Public/ecma/Controllers/AIChatController.ecma.js

39 lines
623 B
JavaScript

"use strict";
/**
* @typedef {import("../Application/AnP.ecma.js").AnP} AnP
*/
/**
* @class AIChat
* @constructor
* @param {!AnP} anp
* @returns {void}
* @access private
* @static
*/
export const AIChat = (function(){
/**
* @constructs AIChat
* @param {!AnP} anp
* @returns {void}
* @access private
* @static
*/
const AIChat = function(anp){
/** @type {AIChat} */
const self = this;
/**
* @returns {void}
* @access private
*/
const constructor = () => {};
constructor();
};
return AIChat;
})();