@teqfw/core
Version:
Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.
23 lines (21 loc) • 511 B
JavaScript
/**
* Interface for a backend converter between Domain DTO and Persistent DTO.
*
* This is documentation-only code (not executable).
*
* @interface
*/
export default class TeqFw_Core_Back_Api_Convert {
/**
* Converts a set of Persistent DTOs into a Domain DTO.
* @param {Object} params
* @returns {Object}
*/
db2dom({}) { }
/**
* Converts a Domain DTO into a set of Persistent DTOs.
* @param {Object} params
* @returns {Object}
*/
dom2db({}) { }
}