mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { Observable } from "rxjs";
|
|
|
|
import { TranslationService } from "./translation.service";
|
|
|
|
export abstract class I18nService extends TranslationService {
|
|
locale$: Observable<string>;
|
|
}
|