@teqfw/core
Version:
Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.
18 lines (17 loc) • 500 B
JavaScript
/**
* Simple factory to create DTO. This factory does not provide any meta-information (properties names, etc.)
*
* This is documentation-only code (not executable).
*
* @interface
* @deprecated
* @see TeqFw_Core_Shared_Api_Factory (a factory uses the `create` method, not `createDto`)
*/
export default class TeqFw_Core_Shared_Api_Factory_Dto {
/**
* Create a new DTO and clone 'data' into a new object.
* @param {*} [data]
* @returns {*}
*/
createDto(data) {}
}