Skip to content

Commit

Permalink
fix(admin-ui): Make MockI18nService compatible with new I18nService
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseinGhanbari committed Nov 29, 2023
1 parent 9ef0a2c commit ab785a1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ export class MockI18nService implements MockOf<I18nService> {

isRTL(): boolean {
return false;
}
}

availableLanguages: LanguageCode[];
availableLocales: string[] = [];
setAvailableLocales: (locales: string[]) => void;
setAvailableLanguages: (languages: LanguageCode[]) => void;
_availableLanguages: LanguageCode[];
_availableLocales: string[] = [];
ngxTranslate: TranslateService;
}

0 comments on commit ab785a1

Please sign in to comment.