(
getInsertInFrontOfRNodeWithI18n: (
parentTNode: TNode,
currentTNode: TNode,
lView: LView,
) => RNode | null,
processI18nInsertBefore: (
renderer: Renderer,
childTNode: TNode,
lView: LView,
childRNode: RNode | RNode[],
parentRElement: RElement | null,
) => void,
)
| 612 | ) => void; |
| 613 | |
| 614 | export function setI18nHandling( |
| 615 | getInsertInFrontOfRNodeWithI18n: ( |
| 616 | parentTNode: TNode, |
| 617 | currentTNode: TNode, |
| 618 | lView: LView, |
| 619 | ) => RNode | null, |
| 620 | processI18nInsertBefore: ( |
| 621 | renderer: Renderer, |
| 622 | childTNode: TNode, |
| 623 | lView: LView, |
| 624 | childRNode: RNode | RNode[], |
| 625 | parentRElement: RElement | null, |
| 626 | ) => void, |
| 627 | ) { |
| 628 | _getInsertInFrontOfRNodeWithI18n = getInsertInFrontOfRNodeWithI18n; |
| 629 | _processI18nInsertBefore = processI18nInsertBefore; |
| 630 | } |
| 631 | |
| 632 | /** |
| 633 | * Appends the `child` native node (or a collection of nodes) to the `parent`. |
no outgoing calls
no test coverage detected
searching dependent graphs…