UNPKG

@ngneat/transloco

Version:

The internationalization (i18n) library for Angular

13 lines (12 loc) 394 B
import { TranslocoScope, OrArray } from './types'; import { TranslocoService } from './transloco.service'; type ScopeResolverParams = { inline: string | undefined; provider: OrArray<TranslocoScope> | null; }; export declare class ScopeResolver { private service; constructor(service: TranslocoService); resolve(params: ScopeResolverParams): string | undefined; } export {};