UNPKG

@teqfw/core

Version:

Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.

19 lines (18 loc) 464 B
/** * Abstraction of functionality that creates some objects synchronously. * * 'function' notation is better than 'class' notation for an actions but there were some * troubles with 'Find Usages' operation in IDEA for 'function' notation. * * This is documentation only code (not executable). * * @interface */ export default class TeqFw_Core_Shared_Api_Factory { /** * * @param {*} [opts] * @returns {*} */ create(opts) {} }