@ngneat/transloco
Version:
The internationalization (i18n) library for Angular
13 lines (12 loc) • 422 B
TypeScript
import { TranslocoScope, MaybeArray } from './types';
import { TranslocoService } from './transloco.service';
declare type ScopeResolverParams = {
inline: string | undefined;
provider: MaybeArray<TranslocoScope>;
};
export declare class ScopeResolver {
private translocoService;
constructor(translocoService: TranslocoService);
resolve({ inline, provider }?: ScopeResolverParams): string;
}
export {};