ts-db-helper
Version:
Simple ORM based on TypeScript
18 lines • 466 B
JavaScript
/**
* @public
* @class ShadowValue
*
* @description
* This class is the data hidden model that link visible model to data store real value.
* this informations are used in the shadow of the class model interface
*
* @author Olivier Margarit
* @since 0.2
*/
var ShadowValue = /** @class */ (function () {
function ShadowValue() {
}
return ShadowValue;
}());
export { ShadowValue };
//# sourceMappingURL=shadow-value.model.js.map