Hello,
It's about Magento 2.3. Where are functions which get the totals from the checkout page, summary section?
For example, I found the .html files for this which such as grand-total.html, with the following code, but where is the function exactly? From where it tries to get the value (getValue())?
<!-- ko if: isDisplayed() -->
<tr class="grand totals">
<td class="mark" scope="row">
<strong data-bind="i18n: title"></strong>
</td>
<td class="amount" data-bind="attr: {'data-th': $t(title)}">
<strong><span class="price" data-bind="text: getValue()"></span></strong>
<!-- ko foreach: elems() -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
</td>
</tr>
<!-- /ko -->