UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

30 lines (24 loc) 806 B
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([], function() { "use strict"; /** * QuickView renderer. * @namespace */ var QuickViewRenderer = {}; /** * Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}. * * @param {sap.ui.core.RenderManager} * oRm the RenderManager that can be used for writing to the render output buffer * @param {sap.ui.core.Control} * oQuickView an object representation of the control that should be rendered */ QuickViewRenderer.render = function (oRm, oControl) {}; return QuickViewRenderer; }, /* bExport= */ true);