(meta?: i18n.I18nMeta)
| 45 | } |
| 46 | |
| 47 | export function isSingleI18nIcu(meta?: i18n.I18nMeta): meta is i18n.I18nMeta & {nodes: [i18n.Icu]} { |
| 48 | return isI18nRootNode(meta) && meta.nodes.length === 1 && meta.nodes[0] instanceof i18n.Icu; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Process a template AST and convert it into a `ComponentCompilation` in the intermediate |
no test coverage detected