@teqfw/core
Version:
Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.
22 lines (19 loc) • 443 B
JavaScript
/**
* Factory to create DTO and to provide meta-information for DTO.
*
* This is documentation-only code (not executable).
*
* @interface
* @extends TeqFw_Core_Shared_Api_Factory
*/
export default class TeqFw_Core_Shared_Api_Factory_Dto_Meta {
/**
* @deprecated use `create` instead.
*/
createDto(data) {};
/**
* Get codifier for entity attributes.
* @returns {Object}
*/
getAttributes() {}
}